diff options
author | Ben Sima <ben@bsima.me> | 2020-04-03 19:08:35 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-03 19:08:35 -0700 |
commit | 9214692fa60fce959d5fc34dc84c1aa682248222 (patch) | |
tree | 260afcb83b321f2d58961ef67cecd7b22c2891c8 /default.nix | |
parent | e82440741295543769fa79ae05519d58fcb81b08 (diff) |
Centralize hackage packages to deps.nix
This also allowes me to make 'repl' into a universal command. This makes
it much easier to work across different projects.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/default.nix b/default.nix index b15b925..9ac2286 100644 --- a/default.nix +++ b/default.nix @@ -77,4 +77,6 @@ in rec { Com.MusicMeetsComics.Client = biz.buildGhcjs Com/MusicMeetsComics/Client.hs; Run.Que.Server = biz.buildGhc ./Run/Que/Server.hs; Run.Que.Website = biz.buildGhc ./Run/Que/Website.hs; + # Development environment + repl = biz.globalGhc; } |