2013-03-31 17:40:11 +00:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
2014-08-08 12:50:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-25 13:40:51 +00:00
|
|
|
version = "6.4.2";
|
|
|
|
name = "multitail-${version}";
|
2013-03-31 17:40:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.vanheusden.com/multitail/${name}.tgz";
|
2015-09-25 13:40:51 +00:00
|
|
|
sha256 = "1zd1r89xkxngl1pdrvsc877838nwkfqkbcgfqm3vglwalxc587dg";
|
2013-03-31 17:40:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2014-04-15 08:33:26 +00:00
|
|
|
makeFlags = stdenv.lib.optionalString stdenv.isDarwin "-f makefile.macosx";
|
|
|
|
|
2013-03-31 17:40:11 +00:00
|
|
|
installPhase = ''
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p $out/bin
|
2013-03-31 17:40:11 +00:00
|
|
|
cp multitail $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.vanheusden.com/multitail/;
|
|
|
|
description = "tail on Steroids";
|
2018-04-06 08:57:19 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2016-05-25 18:40:41 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-08-06 10:41:40 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-03-31 17:40:11 +00:00
|
|
|
};
|
|
|
|
}
|