mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
7ed0a6f85f
ocamlPackages.irmin-graphql: mark as broken
34 lines
579 B
Nix
34 lines
579 B
Nix
{ lib, buildDunePackage, cohttp-lwt, graphql-cohttp, graphql-lwt, irmin
|
|
, alcotest, alcotest-lwt, logs, yojson, cohttp-lwt-unix, cacert
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-graphql";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [ cohttp-lwt graphql-cohttp graphql-lwt irmin ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
alcotest
|
|
alcotest-lwt
|
|
logs
|
|
cohttp-lwt-unix
|
|
yojson
|
|
cacert
|
|
];
|
|
|
|
meta = irmin.meta // {
|
|
description = "GraphQL server for Irmin";
|
|
broken = true; # Not compatible with graphql 0.14
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|