nixpkgs/pkgs/tools/misc/multitail/default.nix
OTABI Tomoya b1f3e2614e
multitail: update meta
- use the fork url as the homepage instead of the original one
- change the license to asl20
2023-10-28 22:05:37 +09:00

33 lines
744 B
Nix

{ lib, stdenv, fetchFromGitHub, ncurses, pkg-config, cmake }:
stdenv.mkDerivation rec {
version = "7.1.1";
pname = "multitail";
src = fetchFromGitHub {
owner = "folkertvanheusden";
repo = pname;
rev = version;
sha256 = "sha256-qQc7FqpkAri/RE1hJIC4P6n1Jc6TJwBcR0Dp5n5QDQg=";
};
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ ncurses ];
installPhase = ''
mkdir -p $out/bin
cp bin/multitail $out/bin
'';
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;
};
}