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
18 lines
431 B
Nix
18 lines
431 B
Nix
{stdenv, fetchurl, pkgconfig, glib, libIDL, popt}:
|
|
|
|
assert pkgconfig != null && glib != null && libIDL != null
|
|
&& popt != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ORBit2-2.8.3";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.gnome.org/pub/gnome/sources/ORBit2/2.8/ORBit2-2.8.3.tar.bz2;
|
|
md5 = "c6c4b63de2f70310e33a52a37257ddaf";
|
|
};
|
|
pkgconfig = pkgconfig;
|
|
glib = glib;
|
|
libIDL = libIDL;
|
|
popt = popt;
|
|
}
|