mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
23 lines
377 B
Nix
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;
|
|
}
|