3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.ppx_tools_versioned: 5.1 -> 5.2.3

Ensures compatibility with OCaml 4.08
This commit is contained in:
Vincent Laporte 2019-08-23 17:51:53 +00:00
parent 7cca325b07
commit c21c1e8f3f
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,23 +1,19 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, ocaml-migrate-parsetree }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml-migrate-parsetree }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ppx_tools_versioned-${version}";
version = "5.1";
buildDunePackage rec {
pname = "ppx_tools_versioned";
version = "5.2.3";
src = fetchFromGitHub {
owner = "let-def";
repo = "ppx_tools_versioned";
owner = "ocaml-ppx";
repo = pname;
rev = version;
sha256 = "1c7kvca67qpyr4hiy492yik5x31lmkhyhy5wpl0l0fbx7fr7l624";
sha256 = "1hcmpnw26zf70a71r3d2c2c0mn8q084gdn1r36ynng6fv9hq6j0y";
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ ocaml-migrate-parsetree ];
createFindlibDestdir = true;
meta = with stdenv.lib; {
meta = with lib; {
homepage = https://github.com/let-def/ppx_tools_versioned;
description = "Tools for authors of syntactic tools (such as ppx rewriters)";
license = licenses.gpl2;