Some first changes to get some evaluation working on the fuloong2f

svn path=/nixpkgs/branches/stdenv-updates/; revision=22840
This commit is contained in:
Lluís Batlle i Rossell
2010-08-01 20:57:13 +00:00
parent ba58eb8e22
commit 937578d5ef
7 changed files with 63 additions and 7 deletions

View File

@@ -20,6 +20,7 @@ stdenv.mkDerivation {
if stdenv.system == "x86_64-linux" then "x86_64" else
if stdenv.system == "powerpc-linux" then "powerpc" else
if stdenv.system == "armv5tel-linux" then "arm" else
if stdenv.system == "mips64-linux" then "mips" else
abort "don't know what the kernel include directory is called for this platform";
buildInputs = [perl];

View File

@@ -26,6 +26,7 @@ stdenv.mkDerivation {
if stdenv.system == "x86_64-linux" then "x86_64" else
if stdenv.system == "powerpc-linux" then "powerpc" else
if stdenv.system == "armv5tel-linux" then "arm" else
if stdenv.platform ? kernelArch then stdenv.platform.kernelArch else
abort "don't know what the kernel include directory is called for this platform";
buildInputs = [perl];