about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ppx_tools_versioned
diff options
context:
space:
mode:
authorVolth <volth@webmaster.ms>2017-04-08 11:34:41 +0000
committerVolth <volth@webmaster.ms>2017-04-23 11:23:21 +0000
commitaa8d50ce0b815668bc5bf5fb1a6a0b31722ea395 (patch)
tree43fd97f0684e8d09f62e97c766958c2fdcac235e /pkgs/development/ocaml-modules/ppx_tools_versioned
parentf1bc5a3a83bc8f101f0f40b2921e071a28160212 (diff)
downloadnixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar.gz
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar.bz2
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar.lz
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar.xz
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.tar.zst
nixlib-aa8d50ce0b815668bc5bf5fb1a6a0b31722ea395.zip
reason: init at 1.13.3
Diffstat (limited to 'pkgs/development/ocaml-modules/ppx_tools_versioned')
-rw-r--r--pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
new file mode 100644
index 000000000000..c402c6be4f1b
--- /dev/null
+++ b/pkgs/development/ocaml-modules/ppx_tools_versioned/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildOcaml, fetchFromGitHub, ocaml-migrate-parsetree }:
+
+buildOcaml rec {
+  name = "ppx_tools_versioned";
+  version = "5.0alpha";
+
+  minimumSupportedOcamlVersion = "4.02";
+
+  src = fetchFromGitHub {
+    owner = "let-def";
+    repo = "ppx_tools_versioned";
+    rev = version;
+    sha256 = "0sa3w0plpa0s202s9yjgz7dbk32xd2s6fymkjijrhj4lkvh08mba";
+  };
+
+  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 ];
+  };
+}