nixpkgs/pkgs/development/ocaml-modules/irmin/mirage-graphql.nix
2022-12-26 07:46:03 +01:00

23 lines
377 B
Nix

{ buildDunePackage, irmin-mirage, irmin-graphql
, mirage-clock, cohttp-lwt, lwt, uri, git
}:
buildDunePackage {
pname = "irmin-mirage-graphql";
inherit (irmin-mirage) version src strictDeps;
duneVersion = "3";
propagatedBuildInputs = [
irmin-mirage
irmin-graphql
mirage-clock
cohttp-lwt
lwt
uri
git
];
inherit (irmin-mirage) meta;
}