1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #62273 from matthewbauer/bad-platforms-add

Add treewide bad platforms
This commit is contained in:
Matthew Bauer 2019-05-31 10:30:42 -04:00 committed by GitHub
commit f21b4270a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View file

@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
description = "Generic spell checking library";
homepage = https://abiword.github.io/enchant;
platforms = platforms.unix;
badPlatforms = [ "x86_64-darwin" ];
license = licenses.lgpl21;
};
}

View file

@ -69,6 +69,7 @@ let self = stdenv.mkDerivation rec {
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
badPlatforms = [ "x86_64-darwin" ];
};
};
in self

View file

@ -71,6 +71,7 @@ let self = stdenv.mkDerivation rec {
'';
platforms = platforms.all;
badPlatforms = [ "x86_64-darwin" ];
maintainers = [ maintainers.peti ];
};
};

View file

@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
homepage = https://www.gnu.org/software/pth;
license = licenses.lgpl21Plus;
platforms = platforms.all;
broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64;
};
}