paper-age: init at v1.1.4
This commit is contained in:
parent
514b109a31
commit
3abe7a9fe7
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/pa/paper-age/package.nix
Normal file
27
pkgs/by-name/pa/paper-age/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "paper-age";
|
||||||
|
version = "1.1.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "matiaskorhonen";
|
||||||
|
repo = "paper-age";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-/8t+4iO+rYlc2WjjECq5mk8t0af/whmzatU63r9sO98=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-lLY3PINWGpdnNojIPT+snvLJTH4UEM7JWXdqrOLxibY=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Easy and secure paper backups of secrets";
|
||||||
|
homepage = "https://github.com/matiaskorhonen/paper-age";
|
||||||
|
changelog = "https://github.com/matiaskorhonen/paper-age/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ tomfitzhenry ];
|
||||||
|
mainProgram = "paper-age";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue