diff options
Diffstat (limited to 'users/grfn/xanthous/shell.nix')
-rw-r--r-- | users/grfn/xanthous/shell.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/users/grfn/xanthous/shell.nix b/users/grfn/xanthous/shell.nix index f771b2d3172f..572ed211bcf4 100644 --- a/users/grfn/xanthous/shell.nix +++ b/users/grfn/xanthous/shell.nix @@ -10,12 +10,14 @@ in packages = p: [p.xanthous]; withHoogle = true; doBenchmark = true; - buildInputs = with pkgs.haskellPackages; [ + buildInputs = (with pkgs.haskellPackages; [ cabal-install ghc-prof-flamegraph hp2pretty hlint haskell-language-server cabal2nix - ]; + ]) ++ (with pkgs; [ + qpdf + ]); } |