diff options
Diffstat (limited to 'pack')
-rw-r--r-- | pack/buildeasy.nix | 30 | ||||
-rw-r--r-- | pack/default.nix | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/pack/buildeasy.nix b/pack/buildeasy.nix new file mode 100644 index 0000000..f5b0963 --- /dev/null +++ b/pack/buildeasy.nix @@ -0,0 +1,30 @@ +{ + # n.b.: 'buildeasy' is already taken by webuildeasy.com. we might want to find + # another name. + # + name = "buildeasy"; + deps = { + both = [ + "miso" + "protolude" + "servant" + "text" + ]; + apex = [ + "acid-state" + "blaze-html" + "blaze-markup" + "bytestring" + "ixset" + "safecopy" + "scotty" + "servant-server" + "text" + ]; + aero = [ + "aeson" + "containers" + "ghcjs-base" + ]; + }; +} diff --git a/pack/default.nix b/pack/default.nix index db2a655..ece0378 100644 --- a/pack/default.nix +++ b/pack/default.nix @@ -8,4 +8,5 @@ with import ../lore/bild.nix; duree = import ./duree.nix { inherit nixpkgs; }; fathom = import ./fathom.nix { inherit nixpkgs; }; ibb = bild ./ibb.nix { inherit nixpkgs; }; + buildeasy = bild ./buildeasy.nix { inherit nixpkgs; }; } |