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

35 lines
1,008 B
Nix
Raw Normal View History

2014-08-04 11:11:29 +00:00
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "paperkey-${version}";
version = "1.6";
2017-06-05 07:37:48 +00:00
2014-08-04 11:11:29 +00:00
src = fetchurl {
url = "http://www.jabberwocky.com/software/paperkey/${name}.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
2014-08-04 11:11:29 +00:00
meta = with stdenv.lib; {
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.
'';
homepage = http://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
};
}