2014-08-04 13:11:29 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "paperkey-${version}";
|
2018-10-26 22:35:52 +02:00
|
|
|
version = "1.6";
|
2017-06-05 09:37:48 +02:00
|
|
|
|
2014-08-04 13:11:29 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.jabberwocky.com/software/paperkey/${name}.tar.gz";
|
2018-10-26 22:35:52 +02:00
|
|
|
sha256 = "1xq5gni6gksjkd5avg0zpd73vsr97appksfx0gx2m38s4w9zsid2";
|
2014-08-04 13:11:29 +02:00
|
|
|
};
|
|
|
|
|
2018-08-08 23:40:38 +02:00
|
|
|
postPatch = ''
|
|
|
|
for a in checks/*.sh ; do
|
|
|
|
substituteInPlace $a \
|
|
|
|
--replace /bin/echo echo
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2014-08-04 13:11:29 +02:00
|
|
|
enableParallelBuilding = true;
|
2017-06-05 09:37:48 +02:00
|
|
|
|
2014-08-04 13:11:29 +02: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.
|
|
|
|
'';
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.jabberwocky.com/software/paperkey/;
|
2014-08-04 13:11:29 +02:00
|
|
|
license = licenses.gpl2;
|
2018-03-31 00:30:39 +02:00
|
|
|
platforms = platforms.unix;
|
2017-06-05 09:37:48 +02:00
|
|
|
maintainers = with maintainers; [ skeidel ];
|
2014-08-04 13:11:29 +02:00
|
|
|
};
|
|
|
|
}
|