45 lines
558 B
Nix
45 lines
558 B
Nix
|
|
{
|
||
|
|
buildDunePackage,
|
||
|
|
cohttp-lwt,
|
||
|
|
cohttp-lwt-unix,
|
||
|
|
graphql-cohttp,
|
||
|
|
graphql-lwt,
|
||
|
|
irmin,
|
||
|
|
git-unix,
|
||
|
|
alcotest,
|
||
|
|
alcotest-lwt,
|
||
|
|
logs,
|
||
|
|
yojson,
|
||
|
|
cacert,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildDunePackage {
|
||
|
|
|
||
|
|
pname = "irmin-graphql";
|
||
|
|
|
||
|
|
inherit (irmin) version src;
|
||
|
|
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
cohttp-lwt
|
||
|
|
cohttp-lwt-unix
|
||
|
|
graphql-cohttp
|
||
|
|
graphql-lwt
|
||
|
|
irmin
|
||
|
|
git-unix
|
||
|
|
];
|
||
|
|
|
||
|
|
doCheck = true;
|
||
|
|
|
||
|
|
checkInputs = [
|
||
|
|
alcotest
|
||
|
|
alcotest-lwt
|
||
|
|
logs
|
||
|
|
yojson
|
||
|
|
cacert
|
||
|
|
];
|
||
|
|
|
||
|
|
meta = irmin.meta // {
|
||
|
|
description = "GraphQL server for Irmin";
|
||
|
|
};
|
||
|
|
}
|