ocamlPackages.ocaml-migrate-parsetree-2-1: init at 2.1.0
This commit is contained in:
parent
cddd4fad6b
commit
c6a8fcd945
2 changed files with 22 additions and 0 deletions
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue