Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at flake-libs 23 lines 367 B view raw
1{ 2 buildDunePackage, 3 atdgen-codec-runtime, 4 biniou, 5 yojson, 6}: 7 8buildDunePackage { 9 pname = "atdgen-runtime"; 10 inherit (atdgen-codec-runtime) version src; 11 12 minimalOCamlVersion = "4.08"; 13 14 propagatedBuildInputs = [ 15 biniou 16 yojson 17 ]; 18 19 meta = atdgen-codec-runtime.meta // { 20 description = "Runtime library for code generated by atdgen"; 21 }; 22 23}