[nix] Disable lix tests

This commit is contained in:
Alyxia Sother 2024-07-19 16:14:57 +02:00
parent 86ad883d1f
commit b1d85b15db
No known key found for this signature in database
GPG Key ID: 01E16C4E775A37E4
1 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@
postPatch = (oldAttrs.postPatch or "") + '' postPatch = (oldAttrs.postPatch or "") + ''
substituteInPlace src/libmain/shared.cc \ substituteInPlace src/libmain/shared.cc \
--replace-fail "(Lix, like Nix)" "but for lesbians" --replace-fail "(Lix, like Nix)" "but for lesbians"
''; '';
# WARNING: This greatly assumes that lix will never merge a CL that breaks
# the tests. But I choose to disable them anyway because the build time is faster
doCheck = false;
}); });
}) })