* Added Sylpheed 1.9.11 (beta for GTK 2).

svn path=/nixpkgs/trunk/; revision=3149
This commit is contained in:
Eelco Dolstra 2005-05-26 20:09:29 +00:00
parent 7737d06698
commit 7e5de2061b
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ sslSupport ? true
, stdenv, fetchurl, pkgconfig, gtk, glib, openssl ? null, gdkpixbuf ? null
}:
assert sslSupport -> openssl != null;
stdenv.mkDerivation {
name = "sylpheed-1.9.11";
src = fetchurl {
url = http://sylpheed.good-day.net/sylpheed/v1.9/sylpheed-1.9.11.tar.bz2;
md5 = "70191d0d98ea576b0d2e175055ced4c9";
};
buildInputs = [
pkgconfig glib gtk
(if sslSupport then openssl else null)
];
configureFlags = [
(if sslSupport then "--enable-ssl" else null)
];
}

View File

@ -1087,6 +1087,12 @@ rec {
imageSupport = true;
};
sylpheed_gtk2 = (import ../applications/networking/mailreaders/sylpheed-gtk2) {
inherit fetchurl stdenv pkgconfig openssl;
inherit (gtkLibs) glib gtk;
sslSupport = true;
};
firefox = (import ../applications/networking/browsers/firefox) {
inherit fetchurl stdenv pkgconfig perl zip;
inherit (gtkLibs) gtk;