Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
stdenv,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dufs";
|
|
version = "0.45.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sigoden";
|
|
repo = "dufs";
|
|
rev = "v${version}";
|
|
hash = "sha256-83lFnT4eRYaBe4e2o6l6AGQycm/oK96n5DXutBNvBsE=";
|
|
};
|
|
|
|
cargoHash = "sha256-WdjqG2URtloh5OnpBBnEWHD3WKGkCKLDcCyWRVGIXto=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|