diff options
Diffstat (limited to 'pkgs/servers/http/dufs/default.nix')
-rw-r--r-- | pkgs/servers/http/dufs/default.nix | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/servers/http/dufs/default.nix b/pkgs/servers/http/dufs/default.nix deleted file mode 100644 index be7ed60083ed..000000000000 --- a/pkgs/servers/http/dufs/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ lib -, rustPlatform -, fetchFromGitHub -, installShellFiles -, stdenv -, darwin -}: - -rustPlatform.buildRustPackage rec { - pname = "dufs"; - version = "0.42.0"; - - src = fetchFromGitHub { - owner = "sigoden"; - repo = "dufs"; - rev = "v${version}"; - hash = "sha256-eada2xQlzB1kknwitwxZhFiv6myTbtYHHFkQtppa0tc="; - }; - - cargoHash = "sha256-juT3trREV7LmjBz+x7Od4XoTGuL1XRhknbU4Nopg2HU="; - - nativeBuildInputs = [ installShellFiles ]; - - buildInputs = lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.Security - ]; - - # FIXME: checkPhase on darwin will leave some zombie spawn processes - # see https://github.com/NixOS/nixpkgs/issues/205620 - doCheck = !stdenv.isDarwin; - checkFlags = [ - # tests depend on network interface, may fail with virtual IPs. - "--skip=validate_printed_urls" - ]; - - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' - installShellCompletion --cmd dufs \ - --bash <($out/bin/dufs --completions bash) \ - --fish <($out/bin/dufs --completions fish) \ - --zsh <($out/bin/dufs --completions zsh) - ''; - - meta = with lib; { - description = "File server that supports static serving, uploading, searching, accessing control, webdav"; - mainProgram = "dufs"; - homepage = "https://github.com/sigoden/dufs"; - changelog = "https://github.com/sigoden/dufs/blob/${src.rev}/CHANGELOG.md"; - license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda holymonson ]; - }; -} |