about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-12-17 21:39:33 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-12-25 10:43:41 +0100
commitd7f08cd90ff3b2e992a18d32a42bf431085868c3 (patch)
tree0b559bedc0055ecc18082d01b72a56ba2a2d0092 /pkgs/development/ocaml-modules
parentffe4a9a863a10c9e816569968e2108a572e8d1fe (diff)
downloadnixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar.gz
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar.bz2
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar.lz
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar.xz
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.tar.zst
nixlib-d7f08cd90ff3b2e992a18d32a42bf431085868c3.zip
ocamlPackages.ppxfind: init at 1.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ppxfind/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ppxfind/default.nix b/pkgs/development/ocaml-modules/ppxfind/default.nix
new file mode 100644
index 000000000000..ebb592dddd29
--- /dev/null
+++ b/pkgs/development/ocaml-modules/ppxfind/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }:
+
+buildDunePackage rec {
+	pname = "ppxfind";
+	version = "1.2";
+	src = fetchurl {
+		url = "https://github.com/diml/ppxfind/releases/download/${version}/ppxfind-${version}.tbz";
+		sha256 = "1687jbgii5w5dvvid3ri2cx006ysv0rrspn8dz8x7ma8615whz2h";
+	};
+
+	minimumOCamlVersion = "4.03";
+
+	buildInputs = [ ocaml-migrate-parsetree ];
+
+	meta = {
+		homepage = "https://github.com/diml/ppxfind";
+		description = "ocamlfind ppx tool";
+		license = lib.licenses.bsd3;
+		maintainers = [ lib.maintainers.vbgl ];
+	};
+}