mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
381 B
Nix
16 lines
381 B
Nix
{ buildDunePackage, atdgen-codec-runtime, biniou, camlp-streams, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "atdgen-runtime";
|
|
inherit (atdgen-codec-runtime) version src;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [ biniou camlp-streams yojson ];
|
|
|
|
meta = atdgen-codec-runtime.meta // {
|
|
description = "Runtime library for code generated by atdgen";
|
|
};
|
|
|
|
}
|