9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
25 lines
446 B
Nix
25 lines
446 B
Nix
{ lib, buildDunePackage, github
|
|
, cohttp, cohttp-lwt-unix, stringext, cmdliner, lwt
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "github-unix";
|
|
inherit (github) version src;
|
|
|
|
postPatch = ''
|
|
substituteInPlace unix/dune --replace 'github bytes' 'github'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
github
|
|
cohttp
|
|
cohttp-lwt-unix
|
|
stringext
|
|
cmdliner
|
|
lwt
|
|
];
|
|
|
|
meta = github.meta // {
|
|
description = "GitHub APIv3 Unix library";
|
|
};
|
|
}
|