* Make it easier to override parts of stdenv (like gcc or make) per

package using the `overrideGCC' and `overrideInStdenv' functions.

svn path=/nixpkgs/trunk/; revision=5505
This commit is contained in:
Eelco Dolstra
2006-06-23 20:11:36 +00:00
parent 45e1edfda8
commit 7682bf3d1e
6 changed files with 39 additions and 21 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, aterm, sdf, pkgconfig, make}:
{stdenv, fetchurl, aterm, sdf, pkgconfig}:
stdenv.mkDerivation {
@@ -11,5 +11,5 @@ stdenv.mkDerivation {
};
inherit aterm sdf;
buildInputs = [pkgconfig aterm sdf make];
buildInputs = [pkgconfig aterm sdf];
}