diff options
author | Ben Sima <ben@bsima.me> | 2020-12-29 22:29:57 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-12-29 22:29:57 -0500 |
commit | 36eac84f40aa938fd9327ddf4f983736ff550bcf (patch) | |
tree | 75da57d82a42e5039227ac8605b004e8e251a6c4 /Biz/Bild/Deps | |
parent | b11e926cf60672c17b462ad142014946063f4136 (diff) |
Deploy hoogle to Biz.Dev
I had to refactor Biz/Bild/Rules.nix. I also had to checkin my patched
hoogle.nix file, but I also upstreamed the patch to nixpkgs-dev so it shouldn't
stick around for too long.
Diffstat (limited to 'Biz/Bild/Deps')
-rw-r--r-- | Biz/Bild/Deps/Haskell.nix | 126 |
1 files changed, 64 insertions, 62 deletions
diff --git a/Biz/Bild/Deps/Haskell.nix b/Biz/Bild/Deps/Haskell.nix index 5e06a5d..001cdb2 100644 --- a/Biz/Bild/Deps/Haskell.nix +++ b/Biz/Bild/Deps/Haskell.nix @@ -1,64 +1,66 @@ +hpkgs: +with hpkgs; [ - "MonadRandom" - "QuickCheck" - "acid-state" - "aeson" - "async" - "bytestring" - "clay" - "cmark" - "config-ini" - "containers" - "directory" - "docopt" - "ekg" - "envy" - "fast-logger" - "filepath" - "ghcjs-base" - "github" - "haskeline" - "http-types" - "ixset" - "katip" - "lucid" - "miso" - "monad-logger" - "monad-metrics" - "mtl" - "network-uri" - "optparse-simple" - "parsec" - "process" - "protolude" - "quickcheck-instances" - "random" - "regex-applicative" - "req" - "safecopy" - "scotty" - "servant" - "servant-auth" - "servant-auth-server" - "servant-lucid" - "servant-server" - "split" - "stm" - "string-quote" - "stripe-haskell" - "tasty" - "text" - "time" - "transformers" - "unagi-chan" - "unix" - "unordered-containers" - "uuid" - "vector" - "wai" - "wai-app-static" - "wai-extra" - "wai-middleware-metrics" - "warp" - "x509" + MonadRandom + QuickCheck + acid-state + aeson + async + bytestring + clay + cmark + config-ini + containers + directory + docopt + ekg + envy + fast-logger + filepath + ghcjs-base + github + haskeline + http-types + ixset + katip + lucid + miso + monad-logger + monad-metrics + mtl + network-uri + optparse-simple + parsec + process + protolude + quickcheck-instances + random + regex-applicative + req + safecopy + scotty + servant + servant-auth + servant-auth-server + servant-lucid + servant-server + split + stm + string-quote + stripe-haskell + tasty + text + time + transformers + unagi-chan + unix + unordered-containers + uuid + vector + wai + wai-app-static + wai-extra + wai-middleware-metrics + warp + x509 ] |