nixpkgs/pkgs/tools/security/paperkey/default.nix

35 lines
1,012 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv }:
2014-08-04 11:11:29 +00:00
stdenv.mkDerivation rec {
pname = "paperkey";
version = "1.6";
2017-06-05 07:37:48 +00:00
2014-08-04 11:11:29 +00:00
src = fetchurl {
url = "https://www.jabberwocky.com/software/paperkey/${pname}-${version}.tar.gz";
sha256 = "1xq5gni6gksjkd5avg0zpd73vsr97appksfx0gx2m38s4w9zsid2";
2014-08-04 11:11:29 +00:00
};
2018-08-08 21:40:38 +00:00
postPatch = ''
for a in checks/*.sh ; do
substituteInPlace $a \
--replace /bin/echo echo
done
'';
2014-08-04 11:11:29 +00:00
enableParallelBuilding = true;
2017-06-05 07:37:48 +00:00
meta = with lib; {
2014-08-04 11:11:29 +00:00
description = "Store OpenPGP or GnuPG on paper";
longDescription = ''
A reasonable way to achieve a long term backup of OpenPGP (GnuPG, PGP, etc)
keys is to print them out on paper. Paper and ink have amazingly long
retention qualities - far longer than the magnetic or optical means that
are generally used to back up computer data.
'';
2019-06-03 10:51:25 +00:00
homepage = "https://www.jabberwocky.com/software/paperkey/";
2014-08-04 11:11:29 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
2017-06-05 07:37:48 +00:00
maintainers = with maintainers; [ skeidel ];
2014-08-04 11:11:29 +00:00
};
}