mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
28 lines
728 B
Nix
28 lines
728 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "paper-age";
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matiaskorhonen";
|
|
repo = "paper-age";
|
|
rev = "v${version}";
|
|
hash = "sha256-OnCE277CeU9k7NGO0fEF2wI9S1wxOw4lK7iSNp1D+KQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-2WhzXr5ugPu56BS++MiTNOzcJxSL9F17IM/+yfjkL8k=";
|
|
|
|
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";
|
|
};
|
|
}
|