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

44 lines
674 B
Nix
Raw Normal View History

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