Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
864 B
Nix
Raw Permalink Normal View History

{
lib,
rustPlatform,
fetchFromGitHub,
2023-07-16 13:23:08 +08:00
}:
rustPlatform.buildRustPackage rec {
pname = "conserve";
version = "24.8.0";
2023-07-16 13:23:08 +08:00
src = fetchFromGitHub {
owner = "sourcefrog";
repo = "conserve";
rev = "v${version}";
hash = "sha256-rdZTx0wFFtWt3EcpvWHY6m+8TEHEj53vhVpdRp5wbos=";
2023-07-16 13:23:08 +08:00
};
cargoHash = "sha256-r14ApN9kGWIyeNlbqrb+vOvvmH2n+O5ovvtSVNTMASo=";
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"
];
2023-07-16 13:23:08 +08:00
meta = with lib; {
description = "Robust portable backup tool in Rust";
homepage = "https://github.com/sourcefrog/conserve";
license = licenses.gpl2Only;
maintainers = with maintainers; [ happysalada ];
2023-11-23 03:51:17 +01:00
mainProgram = "conserve";
2023-07-16 13:23:08 +08:00
};
}