36 lines
734 B
Nix
36 lines
734 B
Nix
|
|
{
|
||
|
|
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;
|
||
|
|
};
|
||
|
|
}
|