about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-12-09 10:29:27 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2019-12-09 17:02:12 +0000
commit186e55f7461e50205a7744b853446c8334dd516d (patch)
tree061df82a7e1120c5a6b0e6f67463c04fe655d2b3 /pkgs/development/ocaml-modules
parent52be004a7cc8694ac0e168574dbfd672eab70a3f (diff)
downloadnixlib-186e55f7461e50205a7744b853446c8334dd516d.tar
nixlib-186e55f7461e50205a7744b853446c8334dd516d.tar.gz
nixlib-186e55f7461e50205a7744b853446c8334dd516d.tar.bz2
nixlib-186e55f7461e50205a7744b853446c8334dd516d.tar.lz
nixlib-186e55f7461e50205a7744b853446c8334dd516d.tar.xz
nixlib-186e55f7461e50205a7744b853446c8334dd516d.tar.zst
nixlib-186e55f7461e50205a7744b853446c8334dd516d.zip
ocamlPackages.irmin-graphql: init at 2.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/irmin/graphql.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/irmin/graphql.nix b/pkgs/development/ocaml-modules/irmin/graphql.nix
new file mode 100644
index 000000000000..abcdc3d58dd2
--- /dev/null
+++ b/pkgs/development/ocaml-modules/irmin/graphql.nix
@@ -0,0 +1,20 @@
+{ lib, buildDunePackage, cohttp-lwt, graphql-cohttp, graphql-lwt, irmin }:
+
+buildDunePackage rec {
+
+  pname = "irmin-graphql";
+
+  inherit (irmin) version src;
+
+  propagatedBuildInputs = [ cohttp-lwt graphql-cohttp graphql-lwt irmin ];
+
+  doCheck = true;
+
+  meta = irmin.meta // {
+    description = "GraphQL server for Irmin";
+  };
+
+}
+
+
+