* Updated Sylpheed to 2.1.9 and added GPG support (through gpgme).

svn path=/nixpkgs/trunk/; revision=4400
This commit is contained in:
Eelco Dolstra
2005-12-19 10:34:01 +00:00
parent 272e44da1c
commit fd5e5e34a4
4 changed files with 38 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, libgpgerror, gnupg}:
stdenv.mkDerivation {
name = "gpgme-1.0.3";
src = fetchurl {
url = ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.0.3.tar.gz;
md5 = "4d33cbdf844fcee1c724e4cf2a32dd11";
};
buildInputs = [libgpgerror gnupg];
}

View File

@@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libgpg-error-1.0";
src = fetchurl {
url = ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.0.tar.gz;
md5 = "ff409db977e4a4897aa09ea420a28a2f";
};
}