nixpkgs/pkgs/tools/security/gnupg/default.nix
Yury G. Kudryashov f7c4d82dd7 gnupg: using sha256
svn path=/nixpkgs/branches/stdenv-updates/; revision=10152
2008-01-15 01:42:31 +00:00

27 lines
761 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, readline
}:
stdenv.mkDerivation {
name = "gnupg-1.4.8";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.cert.dfn.de/pub/tools/crypt/gcrypt/gnupg/gnupg-1.4.8.tar.bz2;
sha256 = "0v009vqpa4l9zwhcaaagz5sx65fjp8g0alsf8kac5s5gvrs2b78i";
};
buildInputs = [readline];
idea = if ideaSupport then fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/idea.c.gz;
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
} else null;
meta = {
description = "A free implementation of the OpenPGP standard for encrypting and signing data";
homepage = http://www.gnupg.org/;
};
}