lol

webkitgtk: unset separateDebugInfo for 32 bit platforms

authored by

Brian McKenna and committed by
Bjørn Forsman
8c60992e 25eeb478

+3 -1
+3 -1
pkgs/development/libraries/webkitgtk/default.nix
··· 73 73 74 74 outputs = [ "out" "dev" "devdoc" ]; 75 75 76 - separateDebugInfo = stdenv.isLinux; 76 + # https://github.com/NixOS/nixpkgs/issues/153528 77 + # Can't be linked within a 4GB address space. 78 + separateDebugInfo = stdenv.isLinux && !stdenv.is32bit; 77 79 78 80 src = fetchurl { 79 81 url = "https://webkitgtk.org/releases/webkitgtk-${finalAttrs.version}.tar.xz";