Merge pull request #124983 from legendofmiracles/xcp

xcp: init at 0.9.0
This commit is contained in:
Sandro 2021-06-01 15:09:22 +02:00 committed by GitHub
commit e22a34d5e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -31387,6 +31387,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 { };