12ae5363ea
* Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
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.10";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://sylpheed.good-day.net/sylpheed/sylpheed-0.9.10.tar.bz2;
|
|
md5 = "4e2242436de3cf3977a1b25b1ddc4930";
|
|
};
|
|
|
|
inherit sslSupport imageSupport;
|
|
|
|
inherit gtk;
|
|
openssl = if sslSupport then openssl else null;
|
|
gdkpixbuf = if imageSupport then gdkpixbuf else null;
|
|
}
|