blob: 53c5ade0eca1374d8fd5c3c42c8704a5dee0e948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
fetchurl,
buildDunePackage,
ocaml,
}:
buildDunePackage (finalAttrs: {
pname = "ocaml-migrate-parsetree";
version = "2.4.0";
minimalOCamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/ocaml-ppx/ocaml-migrate-parsetree/releases/download/${finalAttrs.version}/ocaml-migrate-parsetree-${finalAttrs.version}.tbz";
sha256 = "sha256-7EnEUtwzemIFVqtoK/AZi/UBglULUC2PsjClkSYKpqQ=";
};
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";
broken = lib.versionAtLeast ocaml.version "5.1";
};
})
|