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

43 lines
676 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-05-17 02:51:09 +00:00
ghc-debug-client
eventlog2html
ghc-debug-brick
2023-05-19 22:30:14 +00:00
nixfmt
calligraphy
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
}