* Add a simple standard environment for FreeBSD.

* Use the system Perl on all non-i686-linux platforms.
* Don't build Python support in libxml2 on most platforms.

svn path=/nixpkgs/trunk/; revision=3019
This commit is contained in:
Eelco Dolstra
2005-05-10 12:59:28 +00:00
parent edbfa75d01
commit 0217d8b204
12 changed files with 479 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
{stdenv, genericStdenv, gccWrapper}:
genericStdenv {
name = "stdenv-native";
preHook = ./prehook.sh;
initialPath = "/usr/local /usr /";
inherit stdenv;
gcc = gccWrapper {
name = "gcc-native";
nativeTools = true;
nativeGlibc = true;
nativePrefix = "/usr";
inherit stdenv;
};
shell = "/bin/bash";
}

View File

@@ -0,0 +1 @@
export NIX_ENFORCE_PURITY=