We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245a1d8 commit e227f24Copy full SHA for e227f24
1 file changed
pkgs/development/compilers/zig/generic.nix
@@ -167,6 +167,11 @@ stdenv.mkDerivation (finalAttrs: {
167
};
168
169
meta = {
170
+ # Versions older than 0.14 do not have a runtime page size feature.
171
+ broken =
172
+ lib.versionOlder finalAttrs.version "0.14"
173
+ && stdenv.hostPlatform.pageSize.min > 4096
174
+ && !stdenv.hostPlatform.isDarwin;
175
description = "General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software";
176
homepage = "https://ziglang.org/";
177
changelog = "https://ziglang.org/download/${finalAttrs.version}/release-notes.html";
0 commit comments