stats: 2.11.23 -> 2.11.26 (#374860)
[NixPkgs.git] / pkgs / by-name / tu / tuckr / package.nix
blob191572598e485508bd066bef64625e383467a3b7
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "tuckr";
9   version = "0.10.1";
11   src = fetchFromGitHub {
12     owner = "RaphGL";
13     repo = "Tuckr";
14     rev = version;
15     hash = "sha256-1hF8zZYkvNYA0bDgvu+zsfcT/8MF8HTiTHpYfOxXljA=";
16   };
18   cargoHash = "sha256-QRZsP9OW0oj4PuQNZ1wzvhp9guZ5K3k6WolxzEPUQKw=";
20   doCheck = false; # test result: FAILED. 5 passed; 3 failed;
22   meta = with lib; {
23     description = "Super powered replacement for GNU Stow";
24     homepage = "https://github.com/RaphGL/Tuckr";
25     changelog = "https://github.com/RaphGL/Tuckr/releases/tag/${version}";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ mimame ];
28     mainProgram = "tuckr";
29   };