depot/third_party/nixpkgs/pkgs/development/ocaml-modules/atdgen/runtime.nix

16 lines
352 B
Nix
Raw Normal View History

{ buildDunePackage, atdgen-codec-runtime, biniou, yojson }:
buildDunePackage rec {
pname = "atdgen-runtime";
inherit (atdgen-codec-runtime) version src;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ biniou yojson ];
meta = atdgen-codec-runtime.meta // {
description = "Runtime library for code generated by atdgen";
};
}