Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
734 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "watcher";
version = "0.13.8";
src = fetchFromGitHub {
owner = "e-dant";
repo = "watcher";
tag = version;
hash = "sha256-sQel+W9J8ExWkSEYd6Wjw2M9VgTIax+8zadI982fH4U=";
};
nativeBuildInputs = [
cmake
];
meta = {
description = "Filesystem watcher. Works anywhere. Simple, efficient and friendly";
homepage = "https://github.com/e-dant/watcher";
changelog = "https://github.com/e-dant/watcher/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
gaelreyrol
matthiasbeyer
];
mainProgram = "tw";
platforms = lib.platforms.all;
};
}