mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
17 lines
373 B
Nix
17 lines
373 B
Nix
{ buildDunePackage, atdgen-codec-runtime, biniou, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "atdgen-runtime";
|
|
inherit (atdgen-codec-runtime) version src;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ biniou yojson ];
|
|
|
|
meta = atdgen-codec-runtime.meta // {
|
|
description = "Runtime library for code generated by atdgen";
|
|
};
|
|
|
|
}
|