2003-11-06 17:28:57 +01:00
|
|
|
{ sslSupport ? true
|
|
|
|
, imageSupport ? true
|
|
|
|
, stdenv, fetchurl, gtk, openssl ? null, gdkpixbuf ? null
|
|
|
|
}:
|
|
|
|
|
2004-03-27 16:48:19 +01:00
|
|
|
assert gtk != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
assert imageSupport -> gdkpixbuf != null;
|
2003-11-06 17:28:57 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-06-21 17:49:03 +02:00
|
|
|
name = "sylpheed-0.9.12";
|
2003-11-06 17:28:57 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2004-06-21 17:49:03 +02:00
|
|
|
url = http://sylpheed.good-day.net/sylpheed/sylpheed-0.9.12.tar.bz2;
|
|
|
|
md5 = "5deab7d65f8e19444902be3d82610e6b";
|
2003-11-06 17:28:57 +01:00
|
|
|
};
|
|
|
|
|
2004-03-27 16:48:19 +01:00
|
|
|
inherit sslSupport imageSupport;
|
2003-11-06 17:28:57 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit gtk;
|
2003-11-06 17:28:57 +01:00
|
|
|
openssl = if sslSupport then openssl else null;
|
|
|
|
gdkpixbuf = if imageSupport then gdkpixbuf else null;
|
|
|
|
}
|