Merge pull request #26900 from cohei/update-fswatch

fswatch: 1.5.0 -> 1.9.3
This commit is contained in:
Jörg Thalheim 2017-06-27 18:08:28 +01:00 committed by GitHub
commit d2c500f05c

View file

@ -10,24 +10,17 @@
stdenv.mkDerivation rec {
name = "fswatch-${version}";
version = "1.5.0";
version = "1.9.3";
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "09np75m9df2nk7lc5y9wgq467ca6jsd2p5666d5rkzjvy6s0a51n";
sha256 = "1g329aapdvbzhr39wyh295shpfq5f0nlzsqkjnr8l6zzak7f4yrg";
};
buildInputs = [ autoreconfHook gettext libtool makeWrapper texinfo ];
postFixup = ''
for prog in fswatch-run fswatch-run-bash; do
wrapProgram $out/bin/$prog \
--prefix PATH "${findutils}/bin"
done
'';
meta = with stdenv.lib; {
description = "A cross-platform file change monitor with multiple backends";
homepage = https://github.com/emcrisostomo/fswatch;
@ -35,5 +28,4 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}