watcher: init at 0.13.2

This commit is contained in:
Gaël Reyrol
2025-01-10 12:20:55 +01:00
parent ef0e7d8459
commit 903e45c6c2
+32
View File
@@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "watcher";
version = "0.13.2";
src = fetchFromGitHub {
owner = "e-dant";
repo = "watcher";
tag = version;
hash = "sha256-PpDeZBOdWJewZAyE1J1+IF8TxlkPXUuA9TDpQqtG8I4=";
};
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 ];
mainProgram = "tw";
platforms = lib.platforms.all;
};
}