diff options
-rw-r--r-- | Run/Que.hs (renamed from Com/Simatime/Que.hs) | 2 | ||||
-rw-r--r-- | default.nix | 31 |
2 files changed, 16 insertions, 17 deletions
diff --git a/Com/Simatime/Que.hs b/Run/Que.hs index 2b56575..f1d0e28 100644 --- a/Com/Simatime/Que.hs +++ b/Run/Que.hs @@ -4,7 +4,7 @@ {- | Interprocess communication -} -module Com.Simatime.Que +module Run.Que ( main ) where diff --git a/default.nix b/default.nix index f249d53..f60a2a1 100644 --- a/default.nix +++ b/default.nix @@ -59,21 +59,6 @@ in { boot.enableContainers = true; }; }; - Que = buildGhc { - name = "Com.Simatime.Que"; - nick = "que"; - deps = [ - "aeson" - "async" - "protolude" - "scotty" - "servant" - "servant-server" - "stm" - "unagi-chan" - "unordered-containers" - ]; - }; }; Com.InfluencedByBooks = buildOS { configuration = { @@ -175,7 +160,21 @@ in { ]; }; }; - + Run.Que = buildGhc { + name = "Run.Que"; + nick = "que-server"; + deps = [ + "aeson" + "async" + "protolude" + "scotty" + "servant" + "servant-server" + "stm" + "unagi-chan" + "unordered-containers" + ]; + }; # fallthrough to nixpkgs nixpkgs = nixpkgs; } |