summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/graphql.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/irmin/graphql.nix')
-rw-r--r--pkgs/development/ocaml-modules/irmin/graphql.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/development/ocaml-modules/irmin/graphql.nix b/pkgs/development/ocaml-modules/irmin/graphql.nix
index 3074cfd368e1b..1b5ecb51396fb 100644
--- a/pkgs/development/ocaml-modules/irmin/graphql.nix
+++ b/pkgs/development/ocaml-modules/irmin/graphql.nix
@@ -1,5 +1,5 @@
-{ lib, buildDunePackage, cohttp-lwt, graphql-cohttp, graphql-lwt, irmin
-, alcotest, alcotest-lwt, logs, yojson, cohttp-lwt-unix, cacert
+{ lib, buildDunePackage, cohttp-lwt, cohttp-lwt-unix, graphql-cohttp, graphql-lwt, irmin, git-unix
+, alcotest, alcotest-lwt, logs, yojson, cacert
 }:
 
 buildDunePackage rec {
@@ -8,26 +8,19 @@ buildDunePackage rec {
 
   inherit (irmin) version src;
 
-  useDune2 = true;
-
-  propagatedBuildInputs = [ cohttp-lwt graphql-cohttp graphql-lwt irmin ];
+  propagatedBuildInputs = [ cohttp-lwt cohttp-lwt-unix graphql-cohttp graphql-lwt irmin git-unix ];
 
   doCheck = true;
+
   checkInputs = [
     alcotest
     alcotest-lwt
     logs
-    cohttp-lwt-unix
     yojson
     cacert
   ];
 
   meta = irmin.meta // {
     description = "GraphQL server for Irmin";
-    broken = true; # Not compatible with graphql 0.14
   };
-
 }
-
-
-