Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ppx_tools_versioned / default.nix
blob78915135a0c7190a300153b83e2fa3ac118fe471
1 { lib, fetchFromGitHub, buildDunePackage, ocaml-migrate-parsetree }:
3 buildDunePackage rec {
4   pname = "ppx_tools_versioned";
5   version = "5.4.0";
7   duneVersion = "3";
9   src = fetchFromGitHub {
10     owner = "ocaml-ppx";
11     repo = pname;
12     rev = version;
13     sha256 = "07lnj4yzwvwyh5fhpp1dxrys4ddih15jhgqjn59pmgxinbnddi66";
14   };
16   propagatedBuildInputs = [ ocaml-migrate-parsetree ];
18   meta = with lib; {
19     homepage = "https://github.com/let-def/ppx_tools_versioned";
20     description = "Tools for authors of syntactic tools (such as ppx rewriters)";
21     license = licenses.gpl2;
22     maintainers = [ ];
23   };