base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / pa / paper-age / package.nix
blobd9e9bba2a7aac0bf6ecc33c69c8fc57f798a1498
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "paper-age";
8   version = "1.3.3";
10   src = fetchFromGitHub {
11     owner = "matiaskorhonen";
12     repo = "paper-age";
13     rev = "v${version}";
14     hash = "sha256-XnJSsxWe4/NLOqBjU7++bwLtVfIR9n8hpBxL3K8Bmho=";
15   };
17   cargoHash = "sha256-808+lQxjE9dxgNZm/FuZwFuBFJgx/7kCpNn+FrMvuoY=";
19   meta = with lib; {
20     description = "Easy and secure paper backups of secrets";
21     homepage = "https://github.com/matiaskorhonen/paper-age";
22     changelog = "https://github.com/matiaskorhonen/paper-age/blob/${src.rev}/CHANGELOG.md";
23     license = licenses.mit;
24     maintainers = with maintainers; [ tomfitzhenry ];
25     mainProgram = "paper-age";
26   };