xcp: init at 0.9.0

This commit is contained in:
legendofmiracles 2021-05-30 11:30:46 -06:00
parent bfcd6bd009
commit 170e2e4976
No known key found for this signature in database
GPG key ID: 19B082B3DEFE5451
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "xcp";
version = "0.9.0";
src = fetchFromGitHub {
owner = "tarka";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Kwt1qLuP63bIn0VY3oFEcbKh1GGBdObfOmtPV4DMQUU=";
};
# no such file or directory errors
doCheck = false;
cargoSha256 = "sha256-wFOXRQSOfmGB6Zmkqn7KoK+vyHeFKyGNx7Zf2zzPcE4=";
meta = with lib; {
description = "An extended cp(1)";
homepage = "https://github.com/tarka/xcp";
license = licenses.gpl3Only;
maintainers = with maintainers; [ legendofmiracles ];
};
}

View file

@ -31298,6 +31298,8 @@ in
zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { };
xcp = callPackage ../tools/misc/xcp { };
xcpc = callPackage ../misc/emulators/xcpc { };
zxcvbn-c = callPackage ../development/libraries/zxcvbn-c { };