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