2003-11-06 08:28:57 -08:00
|
|
|
{ sslSupport ? true
|
|
|
|
, imageSupport ? true
|
|
|
|
, stdenv, fetchurl, gtk, openssl ? null, gdkpixbuf ? null
|
|
|
|
}:
|
|
|
|
|
2004-03-27 07:48:19 -08:00
|
|
|
assert gtk != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
assert imageSupport -> gdkpixbuf != null;
|
2003-11-06 08:28:57 -08:00
|
|
|
|
2004-03-29 09:23:01 -08:00
|
|
|
stdenv.mkDerivation {
|
2005-01-03 12:22:48 -08:00
|
|
|
name = "sylpheed-1.0.0";
|
2003-11-06 08:28:57 -08:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 06:44:19 -08:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/sylpheed-1.0.0.tar.bz2;
|
2005-01-03 12:22:48 -08:00
|
|
|
md5 = "864c4fc581a5ab1c7af5e06153c76769";
|
2003-11-06 08:28:57 -08:00
|
|
|
};
|
|
|
|
|
2004-03-27 07:48:19 -08:00
|
|
|
inherit sslSupport imageSupport;
|
2003-11-06 08:28:57 -08:00
|
|
|
|
2004-03-29 09:23:01 -08:00
|
|
|
inherit gtk;
|
2003-11-06 08:28:57 -08:00
|
|
|
openssl = if sslSupport then openssl else null;
|
|
|
|
gdkpixbuf = if imageSupport then gdkpixbuf else null;
|
|
|
|
}
|