evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / atd / default.nix
blob16944c7b38bc204937a56bfc5e74b270f382fde4
1 { lib, atdgen-codec-runtime, cmdliner, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }:
3 buildDunePackage rec {
4   pname = "atd";
5   inherit (atdgen-codec-runtime) version src;
7   minimalOCamlVersion = "4.08";
9   nativeBuildInputs = [ menhir ];
10   buildInputs = [ cmdliner ];
11   propagatedBuildInputs = [ easy-format re yojson ];
13   passthru.tests = {
14     smoke-test = nixosTests.atd;
15   };
17   meta = with lib; {
18     description = "Syntax for cross-language type definitions";
19     homepage = "https://github.com/mjambon/atd";
20     license = licenses.mit;
21     maintainers = with maintainers; [ aij ];
22     mainProgram = "atdcat";
23   };