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 {
|
2008-01-15 01:55:21 +01:00
|
|
|
name = "gnupg-1.4.8";
|
2005-03-22 16:23:20 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2008-01-15 01:55:21 +01:00
|
|
|
url = ftp://ftp.cert.dfn.de/pub/tools/crypt/gcrypt/gnupg/gnupg-1.4.8.tar.bz2;
|
|
|
|
sha1 = "4b63267358e5c70f05b48e27d6877bad2636cabd";
|
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 {
|
2006-10-12 17:58:51 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/idea.c.gz;
|
2005-12-18 23:14:31 +01:00
|
|
|
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
|
|
|
|
} else null;
|
2008-01-15 01:55:21 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A free implementation of the OpenPGP standard for encrypting and signing data";
|
|
|
|
homepage = http://www.gnupg.org/;
|
|
|
|
};
|
2005-03-22 16:23:20 +01:00
|
|
|
}
|