nixpkgs/pkgs/development/ocaml-modules/irmin/graphql.nix
2019-12-09 17:02:12 +00:00

21 lines
337 B
Nix

{ 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";
};
}