mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
22 lines
355 B
Nix
22 lines
355 B
Nix
{ buildDunePackage, github
|
|
, cohttp, cohttp-lwt-jsoo, js_of_ocaml-lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "github-jsoo";
|
|
inherit (github) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
github
|
|
cohttp
|
|
cohttp-lwt-jsoo
|
|
js_of_ocaml-lwt
|
|
];
|
|
|
|
meta = github.meta // {
|
|
description = "GitHub APIv3 JavaScript library";
|
|
};
|
|
}
|