mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
24 lines
329 B
Nix
24 lines
329 B
Nix
{ lib, buildDunePackage, github
|
|
, yojson, atdgen
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "github-data";
|
|
inherit (github) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
nativeBuildInputs = [
|
|
atdgen
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
yojson
|
|
atdgen
|
|
];
|
|
|
|
meta = github.meta // {
|
|
description = "GitHub APIv3 data library";
|
|
};
|
|
}
|