nixpkgs/pkgs/stdenv/nix/default.nix
Eelco Dolstra de13527000 * Finally got stdenv-nix-linux working again. Still not perfect,
though.
* libxml2: upgrade to latest.
* octavefront/rna: keep debug info.

svn path=/nixpkgs/trunk/; revision=830
2004-03-11 17:26:14 +00:00

20 lines
369 B
Nix

{stdenv, pkgs}:
(import ../generic) {
name = "stdenv-nix";
preHook = ./prehook.sh;
initialPath = (import ./path.nix) {pkgs = pkgs;};
inherit stdenv;
gcc = (import ../../build-support/gcc-wrapper) {
name = pkgs.gcc.name;
nativeTools = false;
nativeGlibc = true;
inherit (pkgs) gcc binutils;
inherit stdenv;
};
param1 = pkgs.bash;
}