mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #13571 from DamienCassou/fix-pharo-vm-darwin
pharo-vm: stop trying to build on darwin
This commit is contained in:
commit
d2098bf465
1 changed files with 5 additions and 1 deletions
|
@ -88,6 +88,10 @@ stdenv.mkDerivation rec {
|
|||
homepage = http://pharo.org;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.DamienCassou ];
|
||||
platforms = stdenv.lib.platforms.mesaPlatforms;
|
||||
# Pharo VM sources are packaged separately for darwin (OS X)
|
||||
platforms = with stdenv.lib;
|
||||
intersectLists
|
||||
platforms.mesaPlatforms
|
||||
(subtractLists platforms.darwin platforms.unix);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue