Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / backup / restic-integrity / default.nix
blob6c571527248de9d382cfb66eb4fa8207f94f815f
1 { lib
2 , rustPlatform
3 , fetchFromGitLab
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "restic-integrity";
8   version = "1.2.1";
9   src = fetchFromGitLab {
10     domain = "gitlab.upi.li";
11     owner = "networkException";
12     repo = "restic-integrity";
13     rev = version;
14     hash = "sha256-/n8muqW9ol0AY9RM3N4nqLDw0U1h0308M1uRCMS2kOM=";
15   };
17   cargoHash = "sha256-TYDPzjWxTK9hQhzSknkCao9lq9UjZN3yQX3wtkMmP6E=";
19   meta = with lib; {
20     description = "A CLI tool to check the integrity of a restic repository without unlocking it";
21     homepage = "https://gitlab.upi.li/networkException/restic-integrity";
22     license = with licenses; [ bsd2 ];
23     maintainers = with maintainers; [ janik ];
24   };