aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/misc/fswatch
diff options
context:
space:
mode:
authorTANIGUCHI Kohei <a.d.xvii.kal.mai@gmail.com>2017-06-27 20:24:30 +0900
committerTANIGUCHI Kohei <a.d.xvii.kal.mai@gmail.com>2017-06-27 20:24:30 +0900
commitf48e400133e6b21d958b69c1b27579927abc602a (patch)
tree64934d76fbe5c079a7258fa1261cac1ab1600908 /pkgs/development/tools/misc/fswatch
parent107d53f40c940a6495ee96c1f22aa9200647dce7 (diff)
fswatch: 1.5.0 -> 1.9.3
Diffstat (limited to 'pkgs/development/tools/misc/fswatch')
-rw-r--r--pkgs/development/tools/misc/fswatch/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/development/tools/misc/fswatch/default.nix b/pkgs/development/tools/misc/fswatch/default.nix
index 8f3818fb6b4..b8e2a9a189b 100644
--- a/pkgs/development/tools/misc/fswatch/default.nix
+++ b/pkgs/development/tools/misc/fswatch/default.nix
@@ -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 ];
};
-
}