5503e2fc33
* Tried to upgrade Firefox to 0.9, but it's too broken. It's basically impossible to build it automatically. Firefox must be started once as a user with write permission to the Firefox directory to generate some files, and this can only be done interactively (apparently). Hopefully 0.10 fixes this. Firefox also barfs with link errors if the flag `--enable-single-profile' is not used. svn path=/nixpkgs/trunk/; revision=1067
25 lines
585 B
Nix
25 lines
585 B
Nix
{ sslSupport ? true
|
|
, imageSupport ? true
|
|
, stdenv, fetchurl, gtk, openssl ? null, gdkpixbuf ? null
|
|
}:
|
|
|
|
assert gtk != null;
|
|
assert sslSupport -> openssl != null;
|
|
assert imageSupport -> gdkpixbuf != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sylpheed-0.9.12";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://sylpheed.good-day.net/sylpheed/sylpheed-0.9.12.tar.bz2;
|
|
md5 = "5deab7d65f8e19444902be3d82610e6b";
|
|
};
|
|
|
|
inherit sslSupport imageSupport;
|
|
|
|
inherit gtk;
|
|
openssl = if sslSupport then openssl else null;
|
|
gdkpixbuf = if imageSupport then gdkpixbuf else null;
|
|
}
|