nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 16 lines 373 B view raw
1{ buildDunePackage, atdgen-codec-runtime, biniou, yojson }: 2 3buildDunePackage rec { 4 pname = "atdgen-runtime"; 5 inherit (atdgen-codec-runtime) version src; 6 7 minimalOCamlVersion = "4.08"; 8 duneVersion = "3"; 9 10 propagatedBuildInputs = [ biniou yojson ]; 11 12 meta = atdgen-codec-runtime.meta // { 13 description = "Runtime library for code generated by atdgen"; 14 }; 15 16}