diff options
author | Ben Sima <ben@bsima.me> | 2021-07-23 14:28:35 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:37 -0500 |
commit | 0264f4a5dc37b16f872e6fa92bd8f1fc1e2b1826 (patch) | |
tree | db66845496f21afe845abaa23546b82be9c8adf0 /Biz/Que | |
parent | 7f311fd420e92b6d90007fdd3b2d843e6e1752c3 (diff) |
Automatically detect Haskell dependencies
This parses the files contents for imports, then uses ghc-pkg to lookup the
package that provides the module. Now I can do that analysis in Haskell instead
of nix, which is much easier to code with.
Diffstat (limited to 'Biz/Que')
-rw-r--r-- | Biz/Que/Host.hs | 13 | ||||
-rw-r--r-- | Biz/Que/Site.hs | 11 |
2 files changed, 0 insertions, 24 deletions
diff --git a/Biz/Que/Host.hs b/Biz/Que/Host.hs index fda9835..40ee1a5 100644 --- a/Biz/Que/Host.hs +++ b/Biz/Que/Host.hs @@ -13,19 +13,6 @@ -- - sorta: <https://ngrok.com/> and <https://localtunnel.github.io/www/> -- -- : out que-server --- --- : dep async --- : dep docopt --- : dep envy --- : dep protolude --- : dep rainbow --- : dep scotty --- : dep stm --- : dep tasty --- : dep tasty-hunit --- : dep tasty-quickcheck --- : dep unagi-chan --- : dep unordered-containers module Biz.Que.Host ( main, ) diff --git a/Biz/Que/Site.hs b/Biz/Que/Site.hs index 43441df..06b86c8 100644 --- a/Biz/Que/Site.hs +++ b/Biz/Que/Site.hs @@ -7,17 +7,6 @@ -- | spawns a few processes that serve the que.run website -- -- : out que-website --- --- : dep async --- : dep docopt --- : dep config-ini --- : dep process --- : dep protolude --- : dep rainbow --- : dep req --- : dep tasty --- : dep tasty-hunit --- : dep tasty-quickcheck module Biz.Que.Site ( main, ) |