2005-12-18 23:14:31 +01: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
|
|
|
|
|
2006-08-21 12:38:02 +02:00
|
|
|
, stdenv, fetchurl, readline
|
2005-12-18 23:14:31 +01:00
|
|
|
}:
|
2005-03-22 16:23:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-08-18 11:31:45 +02:00
|
|
|
name = "gnupg-1.4.5";
|
2005-03-22 16:23:20 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-10-12 15:50:54 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gnupg-1.4.5.tar.bz2;
|
2006-08-18 11:31:45 +02:00
|
|
|
sha1 = "553fefe0da5a91108dd9468e381faf9487754f9a";
|
2005-03-22 16:23:20 +01:00
|
|
|
};
|
2006-08-21 12:38:02 +02:00
|
|
|
buildInputs = [readline];
|
2005-12-18 23:14:31 +01:00
|
|
|
idea = if ideaSupport then fetchurl {
|
|
|
|
url = ftp://ftp.gnupg.dk/pub/contrib-dk/idea.c.gz;
|
|
|
|
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
|
|
|
|
} else null;
|
2005-03-22 16:23:20 +01:00
|
|
|
}
|