nixpkgs/pkgs/development/ocaml-modules/irmin/graphql.nix
sternenseemann e3936ac9c1 ocamlPackages.irmin*: 2.1.0 → 2.2.0
source now inherit ppx_irmin instead of irmin, since we can test irmin
using ppx_irmin and this way we avoid circular dependencies.
2020-06-30 17:18:33 +02:00

24 lines
384 B
Nix

{ lib, buildDunePackage, cohttp-lwt, graphql-cohttp, graphql-lwt, irmin }:
buildDunePackage rec {
pname = "irmin-graphql";
inherit (irmin) version src;
useDune2 = true;
propagatedBuildInputs = [ cohttp-lwt graphql-cohttp graphql-lwt irmin ];
# test requires network
doCheck = false;
meta = irmin.meta // {
description = "GraphQL server for Irmin";
};
}