nixpkgs/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
Vincent Laporte 8cbf8116e7 ocamlPackages.ppxfind: 1.3 → 1.4
ocamlPackages.ocaml-migrate-parsetree: 1.5.0 → 1.7.3
2020-05-22 11:08:55 +02:00

23 lines
594 B
Nix

{ lib, fetchFromGitHub, buildDunePackage, result, ppx_derivers }:
buildDunePackage rec {
pname = "ocaml-migrate-parsetree";
version = "1.7.3";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = pname;
rev = "v${version}";
sha256 = "0336vz0galjnsazbmkxjwdv1qvdqsx2rgrvp778xgq2fzasz45cx";
};
propagatedBuildInputs = [ ppx_derivers result ];
meta = {
description = "Convert OCaml parsetrees between different major versions";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}