diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2023-10-02 15:51:36 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2023-10-02 15:51:36 +0200 |
commit | 31c17067c5c18b80fb29fc3cf92b9b8d70b371bb (patch) | |
tree | 3c184b73e216c67c7694006944c4c1dcafff8ca6 /default.nix | |
parent | 4b9b932834860add4ef8fcd7618f2867902fcbd4 (diff) |
run tree-grepper for all files
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 08799f6..722d91c 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,7 @@ -{ pkgs ? import <nixpkgs> { } }: +{ pkgs ? import <nixpkgs> { + overlays = [ (import ./pkgs) ]; + } +}: let @@ -17,6 +20,8 @@ rec { buildInputs = [ haskellPackages.cabal-install haskellPackages.ormolu + pkgs.tree-grepper + pkgs.git ]; shellHook = '' HISTFILE=${pkgs.lib.escapeShellArg ./.}/.history; export HISTFILE |