1 { fetchurl, lib, stdenv }:
3 stdenv.mkDerivation rec {
8 url = "https://www.jabberwocky.com/software/paperkey/${pname}-${version}.tar.gz";
9 sha256 = "1xq5gni6gksjkd5avg0zpd73vsr97appksfx0gx2m38s4w9zsid2";
13 for a in checks/*.sh ; do
14 substituteInPlace $a \
15 --replace /bin/echo echo
19 enableParallelBuilding = true;
22 description = "Store OpenPGP or GnuPG on paper";
24 A reasonable way to achieve a long term backup of OpenPGP (GnuPG, PGP, etc)
25 keys is to print them out on paper. Paper and ink have amazingly long
26 retention qualities - far longer than the magnetic or optical means that
27 are generally used to back up computer data.
29 homepage = "https://www.jabberwocky.com/software/paperkey/";
30 license = licenses.gpl2;
31 platforms = platforms.unix;
32 maintainers = with maintainers; [ skeidel ];