diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-06-18T15·52-0400 |
---|---|---|
committer | grfn <grfn@gws.fyi> | 2021-06-18T17·51+0000 |
commit | 72d9e11a8f92fd1035a5bcfd29cacf5d874e4526 (patch) | |
tree | 59a82a6a814d3e6968f5b11ecd75413dc5e3d4be | |
parent | f795ca68ae88d67bbed3c514a30f46427af373c9 (diff) |
feat(xanthous): Install qpdf in the shell r/2671
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 <grfn@gws.fyi> Tested-by: BuildkiteCI
-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 + ]); } |