2021-01-31 13:29:46 +00:00
|
|
|
{ lib, fetchFromGitHub, buildDunePackage, ocaml, result, ppx_derivers }:
|
2017-03-12 07:29:54 +00:00
|
|
|
|
2021-10-17 20:05:58 +00:00
|
|
|
if lib.versionOlder "4.13" ocaml.version
|
|
|
|
then throw "ocaml-migrate-parsetree-1.8 is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ocaml-migrate-parsetree";
|
2020-11-25 13:15:42 +00:00
|
|
|
version = "1.8.0";
|
2017-03-12 07:29:54 +00:00
|
|
|
|
2023-04-09 05:08:29 +00:00
|
|
|
duneVersion = if lib.versionAtLeast ocaml.version "4.08" then "3" else "1";
|
2021-01-31 13:29:46 +00:00
|
|
|
|
2017-03-12 07:29:54 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-07-05 08:50:50 +00:00
|
|
|
owner = "ocaml-ppx";
|
2018-11-05 10:21:46 +00:00
|
|
|
repo = pname;
|
2017-03-12 07:29:54 +00:00
|
|
|
rev = "v${version}";
|
2020-11-25 13:15:42 +00:00
|
|
|
sha256 = "16x8sxc4ygxrr1868qpzfqyrvjf3hfxvjzmxmf6ibgglq7ixa2nq";
|
2017-03-12 07:29:54 +00:00
|
|
|
};
|
|
|
|
|
2019-02-06 16:29:28 +00:00
|
|
|
propagatedBuildInputs = [ ppx_derivers result ];
|
2017-03-12 07:29:54 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Convert OCaml parsetrees between different major versions";
|
2020-01-14 08:30:27 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2017-03-12 07:29:54 +00:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
};
|
|
|
|
}
|