summary refs log tree commit diff
path: root/pkgs/tools/security/paperkey/default.nix
blob: def98c9af4de2a168530937a3838e0b25653d5e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
  name = "paperkey-${version}";
  version = "1.4";

  src = fetchurl {
    url = "http://www.jabberwocky.com/software/paperkey/${name}.tar.gz";
    sha256 = "0vrkryxqbsjcmqalsnxvc3pahg6vvyrn139aj8md29sihgnb0az1";
  };

  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 = with maintainers; [ skeidel ];
  };
}