3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/mtr/default.nix

55 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config
, libcap, ncurses, jansson
2021-02-12 03:26:28 +00:00
, withGtk ? false, gtk3 }:
2015-03-23 11:54:34 +00:00
stdenv.mkDerivation rec {
2019-08-05 10:39:40 +01:00
pname = "mtr${lib.optionalString withGtk "-gui"}";
version = "0.94";
2017-09-14 11:13:47 +01:00
src = fetchFromGitHub {
2021-02-12 03:26:28 +00:00
owner = "traviscross";
repo = "mtr";
rev = "v${version}";
sha256 = "0wnz87cr2lcl74bj8qxq9xgai40az3pk9k0z893scyc8svd61xz6";
};
patches = [
# pull patch to fix build failure against ncurses-6.3:
# https://github.com/traviscross/mtr/pull/411
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://github.com/traviscross/mtr/commit/aeb493e08eabcb4e6178bda0bb84e9cd01c9f213.patch";
sha256 = "1qk8lf4sha18g36mr84vbdvll2s8khgbzyyq0as3ifx44lv0qlf2";
})
];
2019-08-05 04:46:24 +01:00
# we need this before autoreconfHook does its thing
postPatch = ''
2017-09-14 11:13:47 +01:00
echo ${version} > .tarball-version
2019-08-05 04:46:24 +01:00
'';
2017-09-14 11:13:47 +01:00
2019-08-05 04:46:24 +01:00
# and this after autoreconfHook has generated Makefile.in
preConfigure = ''
substituteInPlace Makefile.in \
--replace ' install-exec-hook' ""
2017-09-14 11:13:47 +01:00
'';
2021-01-15 09:19:50 +00:00
configureFlags = lib.optional (!withGtk) "--without-gtk";
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-03-13 04:22:29 +00:00
buildInputs = [ ncurses jansson ]
2021-01-15 09:19:50 +00:00
++ lib.optional withGtk gtk3
++ lib.optional stdenv.isLinux libcap;
2017-03-13 04:22:29 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "A network diagnostics tool";
2021-02-12 03:26:28 +00:00
homepage = "https://www.bitwizard.nl/mtr/";
license = licenses.gpl2;
maintainers = with maintainers; [ koral orivej raskin globin ];
2021-02-12 03:26:28 +00:00
platforms = platforms.unix;
};
2015-03-23 11:54:34 +00:00
}