Merge pull request #277414 from OPNA2608/update/wlcs

wlcs: 1.6.1 -> 1.7.0

authored by Lily Foster and committed by GitHub 9575c3e3 6de92461

+5 -2
+2 -2
pkgs/development/tools/wlcs/default.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "wlcs"; 16 - version = "1.6.1"; 16 + version = "1.7.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "MirServer"; 20 20 repo = "wlcs"; 21 21 rev = "v${finalAttrs.version}"; 22 - hash = "sha256-YYrhcN1BSJISn/7lxu7Db5YaOK+okdHVJuMwqSDzAIU="; 22 + hash = "sha256-BQPRymkbGu4YvTYXTaTMuyP5fHpqMWI4xPwjDRHZNEQ="; 23 23 }; 24 24 25 25 strictDeps = true;
+3
pkgs/servers/mir/default.nix
··· 150 150 # These get built but don't get executed by default, yet they get installed when tests are enabled 151 151 "-DMIR_BUILD_PERFORMANCE_TESTS=OFF" 152 152 "-DMIR_BUILD_PLATFORM_TEST_HARNESS=OFF" 153 + # https://github.com/MirServer/mir/issues/2987 154 + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106799 155 + "-DMIR_USE_PRECOMPILED_HEADERS=OFF" 153 156 ]; 154 157 155 158 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;