1
0
Fork 0
nixos-config/overlays/ghc/packages.nix

15 lines
478 B
Nix
Raw Normal View History

2021-09-23 22:45:14 +00:00
rec {
makeHaskellScriptPackages = p: {
2023-05-22 01:06:42 +00:00
inherit (p)
aeson shh string-interpolate relude replace-megaparsec async say
megaparsec fdo-notify these fsnotify witch;
2021-09-23 22:45:14 +00:00
};
makeHaskellPackages = p:
{
2023-05-22 01:06:42 +00:00
inherit (p)
releaser cabal-fmt stack ghcid ghc-debug-client eventlog2html
ghc-debug-brick nixfmt calligraphy haskell-language-server cabal-install
dhall pandoc hlint cabal2nix nix-derivation;
} // makeHaskellScriptPackages p;
2021-09-23 22:45:14 +00:00
}