1{ 2 buildDunePackage, 3 github, 4 yojson, 5 atdgen, 6 atdgen-runtime, 7}: 8 9buildDunePackage { 10 pname = "github-data"; 11 inherit (github) version src; 12 13 postPatch = '' 14 substituteInPlace lib_data/dune --replace-warn 'atdgen)' 'atdgen-runtime)' 15 ''; 16 17 nativeBuildInputs = [ 18 atdgen 19 ]; 20 21 propagatedBuildInputs = [ 22 yojson 23 atdgen-runtime 24 ]; 25 26 meta = github.meta // { 27 description = "GitHub APIv3 data library"; 28 }; 29}