all-packages.nix: libuuid is a system library on MacOS X

The libuuid normally used in nixpkgs, util-linux-ng, is not available on
MacOS X.

svn path=/nixpkgs/trunk/; revision=17604
This commit is contained in:
Peter Simons 2009-10-02 12:45:18 +00:00
parent 7ec88bf6bd
commit 37384f83e4

View file

@ -5078,7 +5078,7 @@ let
inherit devicemapper;
};
libuuid = utillinuxng;
libuuid = if stdenv.system != "i686-darwin" then utillinuxng else null;
e2fsprogs = import ../os-specific/linux/e2fsprogs/default.nix {
inherit fetchurl stdenv pkgconfig libuuid;