default.nix: add happy, which is needed by toml-parser.

This commit is contained in:
John MacFarlane 2025-01-02 09:56:11 -08:00
parent 968b0c13ee
commit c9f6d305b3

View file

@ -1,13 +1,14 @@
# default.nix
let
let
pkgs = import <nixpkgs> { };
in
in
pkgs.haskellPackages.developPackage {
root = ./.;
modifier = drv:
pkgs.haskell.lib.addBuildTools drv (with pkgs.haskellPackages;
[ cabal-install
ghcid
happy
]);
}