blob: 6338b0c7be549cd960a72a35b7f7c62655e8dd05 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
stdenv,
fetchFromGitHub,
ncurses,
pkg-config,
cmake,
}:
stdenv.mkDerivation rec {
version = "7.1.5";
pname = "multitail";
src = fetchFromGitHub {
owner = "folkertvanheusden";
repo = "multitail";
rev = version;
hash = "sha256-c9NlQLgHngNBbADZ6/legWFaKHJAQR/LZIfh8bJoc4Y=";
};
nativeBuildInputs = [
pkg-config
cmake
];
buildInputs = [ ncurses ];
installPhase = ''
runHook preInstall
install -Dm755 multitail -t $out/bin/
runHook postInstall
'';
hardeningDisable = [ "format" ];
meta = {
homepage = "https://github.com/folkertvanheusden/multitail";
description = "tail on Steroids";
maintainers = with lib.maintainers; [ matthiasbeyer ];
platforms = lib.platforms.unix;
license = lib.licenses.asl20;
mainProgram = "multitail";
};
}
|