Merge pull request #277414 from OPNA2608/update/wlcs

wlcs: 1.6.1 -> 1.7.0
This commit is contained in:
Lily Foster 2024-01-17 18:59:55 -05:00 committed by GitHub
commit 9575c3e371
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -13,13 +13,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "wlcs";
version = "1.6.1";
version = "1.7.0";
src = fetchFromGitHub {
owner = "MirServer";
repo = "wlcs";
rev = "v${finalAttrs.version}";
hash = "sha256-YYrhcN1BSJISn/7lxu7Db5YaOK+okdHVJuMwqSDzAIU=";
hash = "sha256-BQPRymkbGu4YvTYXTaTMuyP5fHpqMWI4xPwjDRHZNEQ=";
};
strictDeps = true;

View File

@ -150,6 +150,9 @@ stdenv.mkDerivation (finalAttrs: {
# These get built but don't get executed by default, yet they get installed when tests are enabled
"-DMIR_BUILD_PERFORMANCE_TESTS=OFF"
"-DMIR_BUILD_PLATFORM_TEST_HARNESS=OFF"
# https://github.com/MirServer/mir/issues/2987
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106799
"-DMIR_USE_PRECOMPILED_HEADERS=OFF"
];
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;