ocamlPackages.ocaml-migrate-parsetree-2-1: init at 2.1.0

This commit is contained in:
sternenseemann 2020-11-25 14:16:07 +01:00 committed by Vincent Laporte
parent cddd4fad6b
commit c6a8fcd945
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "ocaml-migrate-parsetree";
version = "2.1.0";
minimumOCamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/ocaml-ppx/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "07x7lm45kny0mi0fjvzw51445brm0dgy099cw0gpyly0wj77hyrq";
};
meta = {
description = "Convert OCaml parsetrees between different major versions";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ vbgl sternenseemann ];
homepage = "https://github.com/ocaml-ppx/ocaml-migrate-parsetree";
};
}

View file

@ -666,6 +666,8 @@ let
ocaml-migrate-parsetree-1-8 = callPackage ../development/ocaml-modules/ocaml-migrate-parsetree/1.8.x.nix { };
ocaml-migrate-parsetree-2-1 = callPackage ../development/ocaml-modules/ocaml-migrate-parsetree/2.1.x.nix { };
ocamlmod = callPackage ../development/tools/ocaml/ocamlmod { };
ocaml-monadic = callPackage ../development/ocaml-modules/ocaml-monadic { };