nixpkgs/pkgs/development/tools/misc/fswatch/default.nix
R. RyanTM 2cbaaa55d5 fswatch: 1.13.0 -> 1.14.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fswatch/versions
2018-12-17 02:20:23 +00:00

33 lines
757 B
Nix

{ stdenv
, fetchFromGitHub
, autoreconfHook
# for xargs
, gettext
, libtool
, makeWrapper
, texinfo
}:
stdenv.mkDerivation rec {
name = "fswatch-${version}";
version = "1.14.0";
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "1d1fvm36qgh6a5j9v24wai61d297pvzxr14jngjlhh4i474ff21i";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gettext libtool makeWrapper texinfo ];
meta = with stdenv.lib; {
description = "A cross-platform file change monitor with multiple backends";
homepage = https://github.com/emcrisostomo/fswatch;
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}