mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
25 lines
441 B
Nix
25 lines
441 B
Nix
{ 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";
|
|
};
|
|
}
|