2022-10-21 18:38:19 +00:00
|
|
|
{ lib, buildDunePackage, cohttp-lwt, cohttp-lwt-unix, graphql-cohttp, graphql-lwt, irmin, git-unix
|
|
|
|
, alcotest, alcotest-lwt, logs, yojson, cacert
|
2021-02-22 21:28:39 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
|
|
|
|
pname = "irmin-graphql";
|
|
|
|
|
|
|
|
inherit (irmin) version src;
|
2022-12-28 21:21:41 +00:00
|
|
|
duneVersion = "3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
propagatedBuildInputs = [ cohttp-lwt cohttp-lwt-unix graphql-cohttp graphql-lwt irmin git-unix ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-22 21:28:39 +00:00
|
|
|
doCheck = true;
|
2022-10-21 18:38:19 +00:00
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [
|
2021-02-22 21:28:39 +00:00
|
|
|
alcotest
|
|
|
|
alcotest-lwt
|
|
|
|
logs
|
|
|
|
yojson
|
2021-05-20 23:08:51 +00:00
|
|
|
cacert
|
2021-02-22 21:28:39 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = irmin.meta // {
|
|
|
|
description = "GraphQL server for Irmin";
|
|
|
|
};
|
|
|
|
}
|