1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/tools/misc/fswatch/default.nix

34 lines
819 B
Nix
Raw Normal View History

2015-01-10 19:29:05 +00:00
{ stdenv
, fetchFromGitHub
2015-05-28 17:54:35 +01:00
, autoreconfHook
# for xargs
2015-04-07 03:48:44 +01:00
, gettext
2015-01-10 19:29:05 +00:00
, libtool
, makeWrapper
, texinfo
, CoreServices
2015-01-10 19:29:05 +00:00
}:
2015-05-28 17:54:35 +01:00
stdenv.mkDerivation rec {
pname = "fswatch";
version = "1.14.0";
2015-01-10 19:29:05 +00:00
src = fetchFromGitHub {
owner = "emcrisostomo";
repo = "fswatch";
rev = version;
sha256 = "1d1fvm36qgh6a5j9v24wai61d297pvzxr14jngjlhh4i474ff21i";
2015-01-10 19:29:05 +00:00
};
nativeBuildInputs = [ autoreconfHook ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
buildInputs = [ gettext libtool makeWrapper texinfo ];
2015-01-10 19:29:05 +00:00
2015-01-20 11:52:49 +00:00
meta = with stdenv.lib; {
2015-01-10 19:29:05 +00:00
description = "A cross-platform file change monitor with multiple backends";
homepage = https://github.com/emcrisostomo/fswatch;
2015-01-20 11:52:49 +00:00
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
2015-01-10 19:29:05 +00:00
};
}