* Don't abort when we're not on Linux.
svn path=/nixpkgs/trunk/; revision=13302
This commit is contained in:
parent
f7f25d81a7
commit
31dc7a4c2f
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
|||||||
src =
|
src =
|
||||||
if stdenv.system == "i686-linux" then src32
|
if stdenv.system == "i686-linux" then src32
|
||||||
else if stdenv.system == "x86_64-linux" then src64
|
else if stdenv.system == "x86_64-linux" then src64
|
||||||
else abort "unsupported platform for CryoPID";
|
else throw "unsupported platform for CryoPID";
|
||||||
|
|
||||||
buildInputs = [zlibStatic];
|
buildInputs = [zlibStatic];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user