From b1d85b15db685a47e61f06ec3c0a5d0557a684f9 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Fri, 19 Jul 2024 16:14:57 +0200 Subject: [PATCH] [nix] Disable lix tests --- nix/overlays/lix.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/overlays/lix.nix b/nix/overlays/lix.nix index bde29b6..f44f23b 100644 --- a/nix/overlays/lix.nix +++ b/nix/overlays/lix.nix @@ -3,6 +3,10 @@ postPatch = (oldAttrs.postPatch or "") + '' substituteInPlace src/libmain/shared.cc \ --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; }); })