summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-09-02 09:03:54 -0700
committerBen Sima <ben@bsima.me>2019-09-02 09:03:54 -0700
commit575de8c8eb5e4adc847ae2d8819d5db53a59e1e8 (patch)
treeb214cf524886ca18506346c6bfd2156710b666ff
parent003990b6630d4b08d3bd1aa58bc1f4bb430154b2 (diff)
[pack] add buildeasy
-rw-r--r--pack/buildeasy.nix30
-rw-r--r--pack/default.nix1
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; };
}