summary refs log tree commit diff
path: root/pkgs/tools/security/paperkey
diff options
context:
space:
mode:
authorSven Keidel <svenkeidel@googlemail.com>2014-08-04 13:11:29 +0200
committerSven Keidel <svenkeidel@googlemail.com>2014-08-04 13:11:29 +0200
commit36d339b74eef6a094fd6f3426eccdc1618598eb1 (patch)
treeae94d123e395f641beb5867ac6b04c1b426ee851 /pkgs/tools/security/paperkey
parent7eb93f944b3c3f57369d9efdba0c8eef8f89e866 (diff)
downloadnixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar.gz
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar.bz2
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar.lz
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar.xz
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.tar.zst
nixlib-36d339b74eef6a094fd6f3426eccdc1618598eb1.zip
added paperkey package
Diffstat (limited to 'pkgs/tools/security/paperkey')
-rw-r--r--pkgs/tools/security/paperkey/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/security/paperkey/default.nix b/pkgs/tools/security/paperkey/default.nix
new file mode 100644
index 000000000000..c3b1d64c3a3e
--- /dev/null
+++ b/pkgs/tools/security/paperkey/default.nix
@@ -0,0 +1,28 @@
+{ fetchurl, stdenv }:
+
+stdenv.mkDerivation rec {
+
+  version = "1.3";
+  name = "paperkey-${version}";
+  
+  src = fetchurl {
+    url = "http://www.jabberwocky.com/software/paperkey/${name}.tar.gz";
+    sha256 = "5b57d7522336fb65c4c398eec27bf44ec0aaa35926157b79a76423231792cbfb";
+  };
+
+  enableParallelBuilding = true;
+  
+  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/";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.skeidel ];
+  };
+}