From 72d9e11a8f92fd1035a5bcfd29cacf5d874e4526 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Fri, 18 Jun 2021 11:52:48 -0400 Subject: feat(xanthous): Install qpdf in the shell This gets us the zlib-flate command line utility, which is useful for decompressing our zlib-compressed save files and poking around in the JSON Change-Id: Ia0d8259d261c4313322d68cc8409ba13f9fb570c Reviewed-on: https://cl.tvl.fyi/c/depot/+/3217 Reviewed-by: grfn Tested-by: BuildkiteCI --- users/grfn/xanthous/shell.nix | 6 ++++-- 1 file 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 + ]); } -- cgit 1.4.1