e3936ac9c1
source now inherit ppx_irmin instead of irmin, since we can test irmin using ppx_irmin and this way we avoid circular dependencies.
24 lines
384 B
Nix
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";
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|