Platform refinement.
This should be stable under regeneration with hackage4nix. svn path=/nixpkgs/trunk/; revision=34189
This commit is contained in:
@@ -17,7 +17,7 @@ cabal.mkDerivation (self: {
|
|||||||
homepage = "http://www.cse.unsw.edu.au/~chak/project/accelerate/";
|
homepage = "http://www.cse.unsw.edu.au/~chak/project/accelerate/";
|
||||||
description = "Accelerate backend for NVIDIA GPUs";
|
description = "Accelerate backend for NVIDIA GPUs";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = [];
|
platforms = self.stdenv.lib.platforms.none;
|
||||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ rec {
|
|||||||
cygwin = ["i686-cygwin"];
|
cygwin = ["i686-cygwin"];
|
||||||
unix = linux ++ darwin ++ freebsd ++ openbsd;
|
unix = linux ++ darwin ++ freebsd ++ openbsd;
|
||||||
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
||||||
|
none = [];
|
||||||
allBut = platform: lists.filter (x: platform != x) all;
|
allBut = platform: lists.filter (x: platform != x) all;
|
||||||
mesaPlatforms = linux;
|
mesaPlatforms = linux;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user