about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-08-08 10:05:14 +0200
committeraszlig <aszlig@redmoonstudios.org>2015-08-08 10:09:53 +0200
commitb0a2a69ca4718e7e4eb4ff0679eb1d1c0ee2ea97 (patch)
tree3863edef31f1e1cd51ef80f9328cb2b97bcfd391 /modules
parent362e3cb9cbadc4e699c4547ca8f800e522ddeaf8 (diff)
profiles/base: Temporarily disable hinotify tests.
Build failure is here:

https://headcounter.org/hydra/build/722122/nixlog/1/raw

I'm overriding this in the base profile for now to get my main
workstations up to date ASAP.

Cc: @peti

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules')
-rw-r--r--modules/user/aszlig/profiles/base.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/user/aszlig/profiles/base.nix b/modules/user/aszlig/profiles/base.nix
index 4855f32c..e4dc641d 100644
--- a/modules/user/aszlig/profiles/base.nix
+++ b/modules/user/aszlig/profiles/base.nix
@@ -84,6 +84,12 @@ in {
           graphicsSupport = true;
         };
       };
+
+      haskellPackageOverrides = lib.const (super: {
+        hinotify = super.hinotify.overrideDerivation (lib.const {
+          doCheck = false;
+        });
+      });
     };
 
     system.fsPackages = with pkgs; [ sshfsFuse ];