2022-09-30 11:47:45 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, Security, openssl, pkg-config }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "dufs";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.34.2";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigoden";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-NkH7w5HEQFhnovUmjN/qW5QZwO8mVQZMbhpNFkKtLTI=";
|
2022-09-30 11:47:45 +00:00
|
|
|
};
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
cargoHash = "sha256-bUznaVyhZswLaXUgC+GUh5ZpJQW7Vkcoui6CO9ds22g=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isLinux [
|
|
|
|
openssl
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
Security
|
|
|
|
];
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
# FIXME: checkPhase on darwin will leave some zombie spawn processes
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/205620
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2022-12-17 10:02:37 +00:00
|
|
|
checkFlags = [
|
|
|
|
# tests depend on network interface, may fail with virtual IPs.
|
|
|
|
"--skip=validate_printed_urls"
|
|
|
|
];
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A file server that supports static serving, uploading, searching, accessing control, webdav";
|
|
|
|
homepage = "https://github.com/sigoden/dufs";
|
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
|
|
maintainers = [ maintainers.holymonson ];
|
|
|
|
};
|
|
|
|
}
|