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
14 lines
317 B
Nix
14 lines
317 B
Nix
{stdenv, fetchurl, perl, ghc, m4}:
|
|
|
|
assert perl != null && ghc != null && m4 != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-6.2";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.haskell.org/ghc/dist/6.2/ghc-6.2-src.tar.bz2;
|
|
md5 = "cc495e263f4384e1d6b38e851bf6eca0";
|
|
};
|
|
inherit perl ghc m4;
|
|
}
|