forked from mirrors/nixpkgs
* Added Sylpheed 1.9.11 (beta for GTK 2).
svn path=/nixpkgs/trunk/; revision=3149
This commit is contained in:
parent
7737d06698
commit
7e5de2061b
|
@ -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)
|
||||
];
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue