diff options
author | Azat Bahawi <azahi@teknik.io> | 2021-11-23 03:19:06 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2021-11-23 03:19:06 +0300 |
commit | 729e030dd25da2e36fa5a1312b8ecb3415dc1675 (patch) | |
tree | 53166b6c3bd96f860d0a7242353ef9cc7bb1790f /flake.nix | |
parent | Remove tests (diff) |
Huge update
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix index 1fb71dc..7234537 100644 --- a/flake.nix +++ b/flake.nix @@ -19,12 +19,15 @@ inherit returnShellEnv; name = "xmonad-ng"; root = ./.; - withHoogle = false; - overrides = self: super: - with pkgs.haskell.lib; - { - # TODO Override xmobar. - }; + modifier = drv: + pkgs.haskell.lib.addBuildTools drv (with pkgs.haskellPackages; [ + brittany + cabal-install + haskell-language-server + hlint + hpack + stack + ]); }; in { defaultPackage.${system} = project false; |