* Don't abort when we're not on Linux.
svn path=/nixpkgs/trunk/; revision=13302
This commit is contained in:
@@ -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];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user