depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/2.1.x.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

22 lines
655 B
Nix

{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "ocaml-migrate-parsetree";
version = "2.1.0";
useDune2 = true;
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";
};
}