diff options
Diffstat (limited to 'users/grfn')
-rw-r--r-- | users/grfn/xanthous/shell.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/users/grfn/xanthous/shell.nix b/users/grfn/xanthous/shell.nix index 29a4952106a1..2695ff8d28cd 100644 --- a/users/grfn/xanthous/shell.nix +++ b/users/grfn/xanthous/shell.nix @@ -1,7 +1,11 @@ -{ pkgs ? (import ../../../. {}).third_party, ... }: +let + depot = import ../../../. {}; + inherit (depot) third_party; + pkgs = third_party.nixpkgs; +in (pkgs.haskellPackages.extend (pkgs.haskell.lib.packageSourceOverrides { - xanthous = pkgs.gitignoreSource ./.; + xanthous = third_party.gitignoreSource ./.; })).shellFor { packages = p: [p.xanthous]; withHoogle = true; |