nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchurl,
4 buildDunePackage,
5 astring,
6 fmt,
7 logs,
8 lwt,
9}:
10
11buildDunePackage (finalAttrs: {
12 pname = "irmin-watcher";
13 version = "0.5.0";
14
15 src = fetchurl {
16 url = "https://github.com/mirage/irmin-watcher/releases/download/${finalAttrs.version}/irmin-watcher-${finalAttrs.version}.tbz";
17 hash = "sha256-vq4kwaz4QUG9x0fGEbQMAuDGjlT3/6lm8xiXTUqJmZM=";
18 };
19
20 propagatedBuildInputs = [
21 astring
22 fmt
23 logs
24 lwt
25 ];
26
27 meta = {
28 homepage = "https://github.com/mirage/irmin-watcher";
29 description = "Portable Irmin watch backends using FSevents or Inotify";
30 license = lib.licenses.isc;
31 maintainers = [ lib.maintainers.vbgl ];
32 };
33
34})