Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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}