python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / xcp / default.nix
blobc427a802539ee7136394f90af377127516afeb93
1 { rustPlatform, fetchFromGitHub, lib }:
3 rustPlatform.buildRustPackage rec {
4   pname = "xcp";
5   version = "0.9.1";
7   src = fetchFromGitHub {
8     owner = "tarka";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-fzwlDYjNCWAnMrRSGvR+OwL+TEs4eRsjqF7uPjui3T0=";
12   };
14   # no such file or directory errors
15   doCheck = false;
17   cargoSha256 = "sha256-c3jUG/ysTzV/67HmGgFSM0KWKlQKo6iqOCQT4E9QA9k=";
19   meta = with lib; {
20     description = "An extended cp(1)";
21     homepage = "https://github.com/tarka/xcp";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ lom ];
24   };