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
|
|
|
|
|
|
|
|
, stdenv, fetchurl
|
|
|
|
}:
|
2005-03-22 16:23:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-03-23 11:22:18 +01:00
|
|
|
name = "gnupg-1.4.2.2";
|
2005-03-22 16:23:20 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-03-23 11:22:18 +01:00
|
|
|
url = ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.2.2.tar.bz2;
|
2006-03-23 13:53:05 +01:00
|
|
|
sha1 = "f5559ddb004e0638f6bd9efe2bac00134c5065ba";
|
2005-03-22 16:23:20 +01:00
|
|
|
};
|
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
|
|
|
}
|