diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -3,10 +3,15 @@ outputs = {self, nixpkgs}: let system = "x86_64-linux"; - pkgs = import nixpkgs {inherit system;}; + pkgs = import nixpkgs {inherit system; config.allowBroken=true;}; + hp = pkgs.haskell.packages.ghc928.override { + overrides = self: super: rec { + cuckoo = pkgs.haskell.lib.dontCheck super.cuckoo; + }; + }; in { - packages.${system}.default = pkgs.haskellPackages.callCabal2nix "dedumi" ./. {}; + packages.${system}.default = hp.callCabal2nix "dedumi" ./. {}; devShells.${system}.default = self.packages.${system}.default.env; }; } |