nixpkgs/pkgs/development/tools/misc/fswatch/default.nix

33 lines
767 B
Nix
Raw Normal View History

2015-01-10 11:29:05 -08:00
{ stdenv
, fetchFromGitHub
2015-05-28 09:54:35 -07:00
, autoreconfHook
2015-01-10 11:29:05 -08:00
, findutils # for xargs
2015-04-06 19:48:44 -07:00
, gettext
2015-01-10 11:29:05 -08:00
, libtool
, makeWrapper
, texinfo
}:
2015-05-28 09:54:35 -07:00
stdenv.mkDerivation rec {
2015-01-10 11:29:05 -08:00
name = "fswatch-${version}";
2017-06-27 04:24:30 -07:00
version = "1.9.3";
2015-01-10 11:29:05 -08:00
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
2017-06-27 04:24:30 -07:00
sha256 = "1g329aapdvbzhr39wyh295shpfq5f0nlzsqkjnr8l6zzak7f4yrg";
2015-01-10 11:29:05 -08:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gettext libtool makeWrapper texinfo ];
2015-01-10 11:29:05 -08:00
2015-01-20 03:52:49 -08:00
meta = with stdenv.lib; {
2015-01-10 11:29:05 -08:00
description = "A cross-platform file change monitor with multiple backends";
homepage = https://github.com/emcrisostomo/fswatch;
2015-01-20 03:52:49 -08:00
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
2015-01-10 11:29:05 -08:00
};
}