21 lines
337 B
Nix
21 lines
337 B
Nix
{ lib, buildDunePackage, cohttp-lwt, graphql-cohttp, graphql-lwt, irmin }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-graphql";
|
|
|
|
inherit (irmin) version src;
|
|
|
|
propagatedBuildInputs = [ cohttp-lwt graphql-cohttp graphql-lwt irmin ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = irmin.meta // {
|
|
description = "GraphQL server for Irmin";
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|