Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / atd / default.nix
blob61dd0f1084c1f8f123959b7247159ff961c80b6f
1 { lib, atdgen-codec-runtime, 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   propagatedBuildInputs = [ easy-format re yojson ];
12   strictDeps = true;
14   passthru.tests = {
15     smoke-test = nixosTests.atd;
16   };
18   meta = with lib; {
19     description = "Syntax for cross-language type definitions";
20     homepage = "https://github.com/mjambon/atd";
21     license = licenses.mit;
22     maintainers = with maintainers; [ aij ];
23     mainProgram = "atdcat";
24   };