Specify some obvious platform sets

svn path=/nixpkgs/trunk/; revision=17205
This commit is contained in:
Michael Raskin 2009-09-16 15:12:24 +00:00
parent ebd78c51d0
commit a9dc68b1ea
4 changed files with 5 additions and 1 deletions

View file

@ -13,5 +13,6 @@ stdenv.mkDerivation {
license = "GPL";
homepage = http://www.riverbankcomputing.co.uk;
maintainers = [ lib.maintainers.sander ];
platforms = lib.platforms.mesaPlatforms;
};
}

View file

@ -9,4 +9,5 @@ rec {
cygwin = ["i686-cygwin"];
all = linux ++ darwin ++ cygwin ++ freebsd;
allBut = platform: lists.filter (x: platform != x) all;
mesaPlatforms = linux ++ darwin ++ freebsd;
}

View file

@ -29,5 +29,6 @@ stdenv.mkDerivation {
homepage = http://www.kde-apps.org/content/show.php/KDE+Partition+Manager?content=89595; # ?
license = "GPL";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View file

@ -3866,7 +3866,8 @@ let
mesaSupported =
system == "i686-linux" ||
system == "x86_64-linux";
system == "x86_64-linux" ||
system == "i686-darwin";
mesa = import ../development/libraries/mesa {
inherit fetchurl stdenv pkgconfig expat x11 xlibs libdrm;