diff options
author | Eelco Dolstra | 2005-12-19 10:34:01 +0000 |
---|---|---|
committer | Eelco Dolstra | 2005-12-19 10:34:01 +0000 |
commit | fd5e5e34a41b8c1560081968cccb0238bc251edd (patch) | |
tree | 49f64745c6a9972948976230151da2d8ffe7539e /pkgs/applications | |
parent | 272e44da1cb56b1c11f1c30953e8c7647f77f204 (diff) |
* Updated Sylpheed to 2.1.9 and added GPG support (through gpgme).
svn path=/nixpkgs/trunk/; revision=4400
Diffstat (limited to 'pkgs/applications')
-rw-r--r-- | pkgs/applications/networking/mailreaders/sylpheed/default.nix | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix index e82f0f4bfd9a..8244f7c6324b 100644 --- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix +++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix @@ -1,20 +1,25 @@ { sslSupport ? true -, stdenv, fetchurl, pkgconfig, gtk, glib, openssl ? null, gdkpixbuf ? null +, gpgSupport ? false +, stdenv, fetchurl, pkgconfig, gtk, glib +, openssl ? null +, gpgme ? null }: assert sslSupport -> openssl != null; +assert gpgSupport -> gpgme != null; stdenv.mkDerivation { - name = "sylpheed-2.1.3"; + name = "sylpheed-2.1.9"; src = fetchurl { - url = http://sylpheed.good-day.net/sylpheed/v2.1/sylpheed-2.1.3.tar.bz2; - md5 = "57f874501c5b0e52b8ec1959fe0359be"; + url = http://sylpheed.good-day.net/sylpheed/v2.1/sylpheed-2.1.9.tar.bz2; + md5 = "fe05714e5037d56ccdcf4b36fe4e9346"; }; buildInputs = [ pkgconfig glib gtk (if sslSupport then openssl else null) + (if gpgSupport then gpgme else null) ]; configureFlags = [ |