depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin-watcher/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

25 lines
655 B
Nix

{ lib, fetchurl, buildDunePackage
, astring, fmt, logs, ocaml_lwt
}:
buildDunePackage rec {
pname = "irmin-watcher";
version = "0.5.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/mirage/irmin-watcher/releases/download/${version}/irmin-watcher-${version}.tbz";
sha256 = "sha256-vq4kwaz4QUG9x0fGEbQMAuDGjlT3/6lm8xiXTUqJmZM=";
};
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 ];
};
}