32 lines
864 B
Nix
32 lines
864 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rcp";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wykurz";
|
|
repo = "rcp";
|
|
rev = "v${version}";
|
|
hash = "sha256-a/gjphldS17W2OWUXpo+bayqaxINVLI7B27wlicT4Ks=";
|
|
};
|
|
|
|
cargoHash = "sha256-i8CrS0WlqlyXmI1waYrbiSFifAn5vqRW0YeQ1Izu0XE=";
|
|
|
|
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 ];
|
|
};
|
|
}
|