nixpkgs/pkgs/tools/misc/xcp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
601 B
Nix
Raw Normal View History

2021-05-30 20:30:46 +03:00
{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "xcp";
2022-08-17 04:45:54 +03:00
version = "0.9.1";
2021-05-30 20:30:46 +03:00
src = fetchFromGitHub {
owner = "tarka";
repo = pname;
rev = "v${version}";
2022-08-17 04:45:54 +03:00
sha256 = "sha256-fzwlDYjNCWAnMrRSGvR+OwL+TEs4eRsjqF7uPjui3T0=";
2021-05-30 20:30:46 +03:00
};
# no such file or directory errors
doCheck = false;
2022-08-17 04:45:54 +03:00
cargoSha256 = "sha256-c3jUG/ysTzV/67HmGgFSM0KWKlQKo6iqOCQT4E9QA9k=";
2021-05-30 20:30:46 +03:00
meta = with lib; {
description = "An extended cp(1)";
homepage = "https://github.com/tarka/xcp";
license = licenses.gpl3Only;
maintainers = with maintainers; [ lom ];
2021-05-30 20:30:46 +03:00
};
}