5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
34 lines
936 B
Nix
34 lines
936 B
Nix
{ expect, fetchFromGitHub, lib, rustPlatform, stdenv }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fcp";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svetlitski";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0f242n8w88rikg1srimdifadhggrb2r1z0g65id60ahb4bjm8a0x";
|
|
};
|
|
|
|
cargoHash = "sha256-iS3H87kTS7Iq0FhHE47zBOozPKC1mG9eHiATxp18hz8=";
|
|
|
|
nativeBuildInputs = [ expect ];
|
|
|
|
# character_device fails with "File name too long" on darwin
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
postPatch = ''
|
|
patchShebangs tests/*.exp
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Significantly faster alternative to the classic Unix cp(1) command";
|
|
homepage = "https://github.com/svetlitski/fcp";
|
|
changelog = "https://github.com/svetlitski/fcp/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "fcp";
|
|
};
|
|
}
|