biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / xcp / default.nix
blobc95be8d922b9d5d4e7ed52fc9232bbf135dd1c4a
1 { rustPlatform, fetchFromGitHub, lib }:
3 rustPlatform.buildRustPackage rec {
4   pname = "xcp";
5   version = "0.21.3";
7   src = fetchFromGitHub {
8     owner = "tarka";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-psxA4YgrO1zg1hVL93opxxQ4VgjdmLP7KI2nkhEYmaE=";
12   };
14   # no such file or directory errors
15   doCheck = false;
17   cargoHash = "sha256-o29DesCKOtl4aQysFOVZUm2BghkFbxBOQi02KrUJRGM=";
19   meta = with lib; {
20     description = "Extended cp(1)";
21     homepage = "https://github.com/tarka/xcp";
22     license = licenses.gpl3Only;
23     maintainers = with maintainers; [ lom ];
24     mainProgram = "xcp";
25   };