pkgs/top-level/all-packages.nix: don't try to link ipmitool statically on Darwin

svn path=/nixpkgs/trunk/; revision=19812
This commit is contained in:
Peter Simons 2010-02-04 10:31:55 +00:00
parent 82f0eb65e3
commit 29efcf85c9

View file

@ -909,7 +909,7 @@ let
ipmitool = import ../tools/system/ipmitool {
inherit fetchurl stdenv openssl;
static = getPkgConfig "ipmitool" "static" false;
static = !stdenv.isDarwin && getPkgConfig "ipmitool" "static" false;
};
jdiskreport = import ../tools/misc/jdiskreport {