nixpkgs/pkgs/development/tools/misc/fswatch/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

33 lines
767 B
Nix

{ stdenv
, fetchFromGitHub
, autoreconfHook
, findutils # for xargs
, gettext
, libtool
, makeWrapper
, texinfo
}:
stdenv.mkDerivation rec {
name = "fswatch-${version}";
version = "1.9.3";
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "1g329aapdvbzhr39wyh295shpfq5f0nlzsqkjnr8l6zzak7f4yrg";
};
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 ];
};
}