ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
40 lines
980 B
Nix
40 lines
980 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "conserve";
|
|
version = "24.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sourcefrog";
|
|
repo = "conserve";
|
|
rev = "v${version}";
|
|
hash = "sha256-rdZTx0wFFtWt3EcpvWHY6m+8TEHEj53vhVpdRp5wbos=";
|
|
};
|
|
|
|
cargoHash = "sha256-IP9x3n5RdI+TKOhMBWEfw9P2CROcC0SmEsmMVaXjiDE=";
|
|
|
|
buildInputs = lib.optionals (stdenv.isDarwin) [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
checkFlags = [
|
|
# expected to panic if unix user has no secondary group,
|
|
# which is the case in the nix sandbox
|
|
"--skip=test_fixtures::test::arbitrary_secondary_group_is_found"
|
|
"--skip=chgrp_reported_as_changed"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Robust portable backup tool in Rust";
|
|
homepage = "https://github.com/sourcefrog/conserve";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
mainProgram = "conserve";
|
|
};
|
|
}
|