nixpkgs/pkgs/tools/security/gnupg/default.nix
Eelco Dolstra bfa6f51e30 * GnuPG updated to 1.4.2.2.
svn path=/nixpkgs/trunk/; revision=5080
2006-03-23 10:22:18 +00:00

21 lines
540 B
Nix

{
# 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
}:
stdenv.mkDerivation {
name = "gnupg-1.4.2.2";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.2.2.tar.bz2;
md5 = "f5559ddb004e0638f6bd9efe2bac00134c5065ba";
};
idea = if ideaSupport then fetchurl {
url = ftp://ftp.gnupg.dk/pub/contrib-dk/idea.c.gz;
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
} else null;
}