From ba62966149ef9a7c899b9b63c26db172f1d4ab33 Mon Sep 17 00:00:00 2001 From: Gabriella Gonzalez Date: Thu, 30 Jun 2022 13:29:26 -0700 Subject: [PATCH] Allow broken so that `bsd-sysctl` builds It works on at least MacOS, although Linux still needs to be fixed. --- shell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 5f0b8a0..327b838 100644 --- a/shell.nix +++ b/shell.nix @@ -20,7 +20,9 @@ let }); }; - pkgs = import { config = { }; overlays = [ overlay ]; }; + config.allowBroken = true; + + pkgs = import { inherit config; overlays = [ overlay ]; }; in pkgs.haskellPackages.nix-serve-ng.env