about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-12-09 10:34:05 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2019-12-09 17:02:13 +0000
commit583b483ebb45f1a8be23e7766c7c14115856d853 (patch)
tree26c87d4e7302c78b8e425efb675dd45bd3cf90bb /pkgs/development/ocaml-modules
parentbdd0a3fe8cf71ca3e8f0dae40455eed37a10ce8a (diff)
downloadnixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar.gz
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar.bz2
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar.lz
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar.xz
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.tar.zst
nixlib-583b483ebb45f1a8be23e7766c7c14115856d853.zip
ocamlPackages.irmin-watcher: init at 0.4.1
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/irmin-watcher/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/irmin-watcher/default.nix b/pkgs/development/ocaml-modules/irmin-watcher/default.nix
new file mode 100644
index 000000000000..55dc9ca866be
--- /dev/null
+++ b/pkgs/development/ocaml-modules/irmin-watcher/default.nix
@@ -0,0 +1,23 @@
+{ lib, fetchurl, buildDunePackage
+, astring, fmt, logs, ocaml_lwt
+}:
+
+buildDunePackage rec {
+  pname = "irmin-watcher";
+  version = "0.4.1";
+
+  src = fetchurl {
+    url = "https://github.com/mirage/irmin-watcher/releases/download/${version}/irmin-watcher-${version}.tbz";
+    sha256 = "00d4ph4jbsw6adp3zqdrwi099hfcf7p1xzi0685qr7bgcmandjfv";
+  };
+
+  propagatedBuildInputs = [ astring fmt logs ocaml_lwt ];
+
+  meta = {
+    homepage = "https://github.com/mirage/irmin-watcher";
+    description = "Portable Irmin watch backends using FSevents or Inotify";
+    license = lib.licenses.isc;
+    maintainers = [ lib.maintainers.vbgl ];
+  };
+
+}