nixpkgs/pkgs/development/ocaml-modules/github/data.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
324 B
Nix
Raw Normal View History

{ buildDunePackage, github
2023-05-03 11:41:44 +00:00
, 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";
};
}