Merge pull request #62273 from matthewbauer/bad-platforms-add
Add treewide bad platforms
This commit is contained in:
commit
f21b4270a1
|
@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Generic spell checking library";
|
description = "Generic spell checking library";
|
||||||
homepage = https://abiword.github.io/enchant;
|
homepage = https://abiword.github.io/enchant;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
badPlatforms = [ "x86_64-darwin" ];
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,6 +69,7 @@ let self = stdenv.mkDerivation rec {
|
||||||
|
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
badPlatforms = [ "x86_64-darwin" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in self
|
in self
|
||||||
|
|
|
@ -71,6 +71,7 @@ let self = stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
badPlatforms = [ "x86_64-darwin" ];
|
||||||
maintainers = [ maintainers.peti ];
|
maintainers = [ maintainers.peti ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = https://www.gnu.org/software/pth;
|
homepage = https://www.gnu.org/software/pth;
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
broken = stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isAarch64;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue