mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rcp";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wykurz";
|
|
repo = "rcp";
|
|
rev = "v${version}";
|
|
hash = "sha256-INLXVruiaK5yv5old0NOWFcg9y13M6Dm7bBMmcPFY1I=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
IOKit
|
|
]);
|
|
|
|
cargoHash = "sha256-JXDM97uGuGh3qHK3Gh8Nd/YSZq/Kcj81PpufJJMqQQI=";
|
|
|
|
RUSTFLAGS = "--cfg tokio_unstable";
|
|
|
|
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 ];
|
|
# = note: Undefined symbols for architecture x86_64: "_utimensat"
|
|
broken = stdenv.isDarwin && stdenv.isx86_64;
|
|
};
|
|
}
|