Fixes to support the new stdenvType

svn path=/nixpkgs/trunk/; revision=6242
This commit is contained in:
Martin Bravenboer
2006-08-25 20:58:02 +00:00
parent 3402fe7c80
commit f0129a3f44
3 changed files with 5 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ stdenv.mkDerivation {
};
patches =
[./aterm-alias-fix-2.patch] ++
(if stdenv.system == "i686-mingw" then [./mingw-asm.patch] else []);
(if stdenv ? isMinGW && stdenv.isMinGW then [./mingw-asm.patch] else []);
meta = {
homepage = http://www.cwi.nl/htbin/sen1/twiki/bin/view/SEN1/ATerm;
license = "LGPL";