python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / paperkey / default.nix
blob766b570a074e1751badc5711b0028e23709aea4b
1 { fetchurl, lib, stdenv }:
3 stdenv.mkDerivation rec {
4   pname = "paperkey";
5   version = "1.6";
7   src = fetchurl {
8     url = "https://www.jabberwocky.com/software/paperkey/${pname}-${version}.tar.gz";
9     sha256 = "1xq5gni6gksjkd5avg0zpd73vsr97appksfx0gx2m38s4w9zsid2";
10   };
12   postPatch = ''
13     for a in checks/*.sh ; do
14       substituteInPlace $a \
15         --replace /bin/echo echo
16     done
17   '';
19   enableParallelBuilding = true;
21   meta = with lib; {
22     description = "Store OpenPGP or GnuPG on paper";
23     longDescription = ''
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.
28     '';
29     homepage = "https://www.jabberwocky.com/software/paperkey/";
30     license = licenses.gpl2;
31     platforms = platforms.unix;
32     maintainers = with maintainers; [ skeidel ];
33   };