* Updated Sylpheed to 2.1.9 and added GPG support (through gpgme).
svn path=/nixpkgs/trunk/; revision=4400
This commit is contained in:
10
pkgs/development/libraries/gpgme/default.nix
Normal file
10
pkgs/development/libraries/gpgme/default.nix
Normal 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];
|
||||
}
|
||||
9
pkgs/development/libraries/libgpg-error/default.nix
Normal file
9
pkgs/development/libraries/libgpg-error/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user