mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Specify some obvious platform sets
svn path=/nixpkgs/trunk/; revision=17205
This commit is contained in:
parent
ebd78c51d0
commit
a9dc68b1ea
@ -13,5 +13,6 @@ stdenv.mkDerivation {
|
||||
license = "GPL";
|
||||
homepage = http://www.riverbankcomputing.co.uk;
|
||||
maintainers = [ lib.maintainers.sander ];
|
||||
platforms = lib.platforms.mesaPlatforms;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user