ab7172a326
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocaml4.06.1-ocaml-migrate-parsetree/versions
30 lines
915 B
Nix
30 lines
915 B
Nix
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, dune, result }:
|
|
|
|
if !stdenv.lib.versionAtLeast ocaml.version "4.02"
|
|
then throw "ocaml-migrate-parsetree is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-ocaml-migrate-parsetree-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ocaml-ppx";
|
|
repo = "ocaml-migrate-parsetree";
|
|
rev = "v${version}";
|
|
sha256 = "1d2n349d1cqm3dr09mwy5m9rfd4bkkqvri5i94wknpsrr35vnrr1";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild dune ];
|
|
propagatedBuildInputs = [ result ];
|
|
|
|
inherit (dune) installPhase;
|
|
|
|
meta = {
|
|
description = "Convert OCaml parsetrees between different major versions";
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
|
inherit (src.meta) homepage;
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|