summary refs log tree commit diff
path: root/pkgs/stdenv/initial
Commit message (Collapse)AuthorAge
* * Fix stdenv-initial.Eelco Dolstra2006-12-28
| | | | svn path=/nixpkgs/trunk/; revision=7510
* * Filter out the meta attribute, again.Eelco Dolstra2006-03-24
| | | | svn path=/nixpkgs/trunk/; revision=5093
* * Use /bin/bash, not /bin/sh, since we really do need bash.Eelco Dolstra2005-05-10
| | | | svn path=/nixpkgs/trunk/; revision=3018
* * Finally we have a working stdenvLinux again.Eelco Dolstra2004-03-30
| | | | | | | On the downside, the build process of stdenvLinux builds gcc 9 times (3 x 3 bootstrap stages). That's a bit excessive. svn path=/nixpkgs/trunk/; revision=880
* * Use a Nix shell for gcc-wrapper and ld-wrapper.Eelco Dolstra2004-03-29
| | | | svn path=/nixpkgs/trunk/; revision=875
* * Remove trivial builders.Eelco Dolstra2004-03-29
| | | | | | | | | | | | * 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
* * Started reorganising stdenv:Eelco Dolstra2004-03-08
- gcc/ld-wrappers have been factored out into a separate derivation. This allows a working gcc to be installed in the user environment. (Previously the Nix gcc didn't work because it needed a whole bunch of flags to point to glibc.) - Better modularity: packages can specify hooks into the setup scripts. For instance, setup no longer knows about the PKG_CONFIG_PATH variable; pkgconfig can set it up instead. - gcc not longer depends on binutils. This simplifies the bootstrap process. svn path=/nixpkgs/trunk/; revision=816