Merge pull request #8937 from cheecheeo/entr_init

entr: init at 3.2
This commit is contained in:
Tobias Geerinckx-Rice 2015-07-31 12:45:50 +02:00
commit 2ed604e566
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, coreutils, ncurses }:
stdenv.mkDerivation rec {
name = "entr-${version}";
version = "3.2";
src = fetchurl {
url = "http://entrproject.org/code/${name}.tar.gz";
sha256 = "0ikigpfzyjmr8j6snwlvxzqamrjbhlv78m8w1h0h7kzczc5f1vmi";
};
postPatch = ''
substituteInPlace Makefile.bsd --replace /bin/echo echo
substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat
substituteInPlace entr.c --replace /usr/bin/clear ${ncurses}/bin/clear
substituteInPlace entr.1 --replace /bin/cat cat
substituteInPlace entr.1 --replace /usr/bin/clear clear
'';
dontAddPrefix = true;
doCheck = true;
checkTarget = "test";
installFlags = [ "PREFIX=$(out)" ];
meta = {
homepage = http://entrproject.org/;
description = "Run arbitrary commands when files change.";
license = stdenv.lib.licenses.isc;
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -1415,6 +1415,8 @@ let
enscript = callPackage ../tools/text/enscript { };
entr = callPackage ../tools/misc/entr { };
eplot = callPackage ../tools/graphics/eplot { };
ethtool = callPackage ../tools/misc/ethtool { };