about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/grfn/xanthous/shell.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/users/grfn/xanthous/shell.nix b/users/grfn/xanthous/shell.nix
index f771b2d317..572ed211bc 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
+  ]);
 }