vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / backup / restic-integrity / default.nix
blob41bb1c318ff5480e6e8109d543bae36b23ae7e14
1 { lib
2 , rustPlatform
3 , fetchFromGitea
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "restic-integrity";
8   version = "1.3.1";
10   src = fetchFromGitea {
11     domain = "git.nwex.de";
12     owner = "networkException";
13     repo = "restic-integrity";
14     rev = version;
15     hash = "sha256-5F2nFSyqrT4JEzUb1NVk0g2LqgwRix3rfflXJ3pttvo=";
16   };
18   cargoHash = "sha256-97M7dqgTzl2ysegavwzf6xtYKum/s9cq4vgaIQR7IA0=";
20   meta = with lib; {
21     description = "CLI tool to check the integrity of a restic repository without unlocking it";
22     homepage = "https://git.nwex.de/networkException/restic-integrity";
23     license = with licenses; [ bsd2 ];
24     maintainers = with maintainers; [ networkexception ];
25     mainProgram = "restic-integrity";
26   };