nixpkgs/pkgs/tools/misc/multitail/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
750 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, pkg-config, cmake }:
2013-03-31 17:40:11 +00:00
2014-08-08 12:50:51 +00:00
stdenv.mkDerivation rec {
version = "7.0.0";
pname = "multitail";
2013-03-31 17:40:11 +00:00
src = fetchFromGitHub {
owner = "folkertvanheusden";
repo = pname;
rev = version;
sha256 = "sha256-AMW55Bmwn0BsD36qGXI5WmEfydrMBob8NRY3Tyq92vA=";
2013-03-31 17:40:11 +00:00
};
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ ncurses ];
2013-03-31 17:40:11 +00:00
installPhase = ''
mkdir -p $out/bin
cp bin/multitail $out/bin
2013-03-31 17:40:11 +00:00
'';
hardeningDisable = [ "format" ];
2013-03-31 17:40:11 +00:00
meta = {
homepage = "https://github.com/halturin/multitail";
2013-03-31 17:40:11 +00:00
description = "tail on Steroids";
2021-01-15 09:19:50 +00:00
maintainers = with lib.maintainers; [ matthiasbeyer ];
platforms = lib.platforms.unix;
license = lib.licenses.gpl2Plus;
2013-03-31 17:40:11 +00:00
};
}