depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/mirage-graphql.nix

28 lines
361 B
Nix

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