diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 7234537..c53b5c2 100644 --- a/flake.nix +++ b/flake.nix @@ -19,6 +19,14 @@ inherit returnShellEnv; name = "xmonad-ng"; root = ./.; + overrides = self: _: + with pkgs.haskell.lib; + let version = "0.17.0"; + in { + xmonad = dontCheck (self.callHackage "xmonad" version { }); + xmonad-contrib = + dontCheck (self.callHackage "xmonad-contrib" version { }); + }; modifier = drv: pkgs.haskell.lib.addBuildTools drv (with pkgs.haskellPackages; [ brittany |