6de74b0752
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 5.1 with grep in /nix/store/6bf2nw21lnwsmdy72z7vcwsx7ipvsmmy-ocaml-ppx_tools_versioned-5.1 - directory tree listing: https://gist.github.com/769030f036fe6d5816eb1c77cdd9ecd0
27 lines
693 B
Nix
27 lines
693 B
Nix
{ stdenv, buildOcaml, fetchFromGitHub, ocaml-migrate-parsetree }:
|
|
|
|
buildOcaml rec {
|
|
name = "ppx_tools_versioned";
|
|
version = "5.1";
|
|
|
|
minimumSupportedOcamlVersion = "4.02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "let-def";
|
|
repo = "ppx_tools_versioned";
|
|
rev = version;
|
|
sha256 = "1c7kvca67qpyr4hiy492yik5x31lmkhyhy5wpl0l0fbx7fr7l624";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ocaml-migrate-parsetree ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/let-def/ppx_tools_versioned;
|
|
description = "Tools for authors of syntactic tools (such as ppx rewriters)";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.volth ];
|
|
};
|
|
}
|