2010-05-19 20:58:47 +00:00
|
|
|
{ # Support for the IDEA cipher (used by the old PGP) should only be
|
|
|
|
# enabled if it is legal for you to do so.
|
|
|
|
ideaSupport ? false
|
|
|
|
|
|
|
|
, stdenv, fetchurl, readline, bzip2
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
idea = fetchurl {
|
2013-06-25 12:05:48 +00:00
|
|
|
url = http://tarballs.nixos.org/idea.c.gz;
|
2010-05-19 20:58:47 +00:00
|
|
|
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-10-06 21:31:31 +00:00
|
|
|
name = "gnupg-1.4.15";
|
2010-05-19 20:58:47 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2013-10-06 21:31:31 +00:00
|
|
|
sha1 = "63ebf0ab375150903c65738070e4105200197fd4";
|
2010-05-19 20:58:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ readline bzip2 ];
|
|
|
|
|
|
|
|
preConfigure = stdenv.lib.optionalString ideaSupport
|
|
|
|
''
|
|
|
|
gunzip < ${idea} > ./cipher/idea.c
|
|
|
|
'';
|
2010-10-19 08:09:28 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2010-05-19 20:58:47 +00:00
|
|
|
meta = {
|
2010-10-19 08:09:28 +00:00
|
|
|
description = "GnuPG, a free implementation of the OpenPGP standard for encrypting and signing data";
|
2010-05-19 20:58:47 +00:00
|
|
|
homepage = http://www.gnupg.org/;
|
2010-10-19 08:09:28 +00:00
|
|
|
license = "GPLv3+";
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2010-05-19 20:58:47 +00:00
|
|
|
};
|
|
|
|
}
|