2014-08-04 12:11:29 +01:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "paperkey-${version}";
|
2017-12-15 01:58:20 +00:00
|
|
|
version = "1.5";
|
2017-06-05 08:37:48 +01:00
|
|
|
|
2014-08-04 12:11:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.jabberwocky.com/software/paperkey/${name}.tar.gz";
|
2017-12-15 01:58:20 +00:00
|
|
|
sha256 = "1prd2jaf4zjad3xhv160hmi5n408ssljfg7iz90jxs9w111pjwy4";
|
2014-08-04 12:11:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2017-06-05 08:37:48 +01:00
|
|
|
|
2014-08-04 12:11:29 +01: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 21:03:30 +01:00
|
|
|
homepage = http://www.jabberwocky.com/software/paperkey/;
|
2014-08-04 12:11:29 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2017-06-05 08:37:48 +01:00
|
|
|
maintainers = with maintainers; [ skeidel ];
|
2014-08-04 12:11:29 +01:00
|
|
|
};
|
|
|
|
}
|