2024-02-07 01:22:34 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rcp";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "0.7.0";
|
2024-02-07 01:22:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wykurz";
|
|
|
|
repo = "rcp";
|
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-kVO2WMwB/Lv4fCcdXaWL/Gfmenky6uMNVrUwhWU9y7A=";
|
2024-02-07 01:22:34 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
cargoHash = "sha256-Pa8YgFAT9nue/QLhHQm6PlTJU/myK60UcND5TthMOxc=";
|
|
|
|
|
|
|
|
RUSTFLAGS = "--cfg tokio_unstable";
|
2024-02-07 01:22:34 +00:00
|
|
|
|
|
|
|
checkFlags = [
|
|
|
|
# this test also sets setuid permissions on a test file (3oXXX) which doesn't work in a sandbox
|
|
|
|
"--skip=copy::copy_tests::check_default_mode"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://github.com/wykurz/rcp/releases/tag/v${version}";
|
|
|
|
description = "Tools to efficiently copy, remove and link large filesets";
|
|
|
|
homepage = "https://github.com/wykurz/rcp";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
mainProgram = "rcp";
|
|
|
|
maintainers = with maintainers; [ wykurz ];
|
|
|
|
};
|
|
|
|
}
|