xcp: init at 0.9.0
This commit is contained in:
parent
bfcd6bd009
commit
170e2e4976
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/xcp/default.nix
Normal file
25
pkgs/tools/misc/xcp/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -31298,6 +31298,8 @@ in
|
||||||
|
|
||||||
zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { };
|
zsnes = pkgsi686Linux.callPackage ../misc/emulators/zsnes { };
|
||||||
|
|
||||||
|
xcp = callPackage ../tools/misc/xcp { };
|
||||||
|
|
||||||
xcpc = callPackage ../misc/emulators/xcpc { };
|
xcpc = callPackage ../misc/emulators/xcpc { };
|
||||||
|
|
||||||
zxcvbn-c = callPackage ../development/libraries/zxcvbn-c { };
|
zxcvbn-c = callPackage ../development/libraries/zxcvbn-c { };
|
||||||
|
|
Loading…
Reference in a new issue