nixpkgs/pkgs/development/tools/misc/fswatch/default.nix
Vladimír Čunát 0619c852cb automake: use 1.14.* as the default
I see 1.15 has been released recently,
but that's probably too new to be the default.
2015-03-09 15:55:21 +01:00

49 lines
966 B
Nix

{ stdenv
, fetchFromGitHub
, autoconf
, automake
, findutils # for xargs
, gettext_0_19
, libtool
, makeWrapper
, texinfo
}:
let
version = "1.4.6";
in stdenv.mkDerivation {
name = "fswatch-${version}";
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "0flq8baqzifhmf61zyiipdipvgy4h0kl551clxrhwa8gvzf75im4";
};
buildInputs = [ autoconf automake gettext_0_19 libtool makeWrapper texinfo ];
preConfigure = ''
./autogen.sh
'';
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;
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}