2019-11-15 22:08:28 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig
|
2019-08-05 04:46:24 +01:00
|
|
|
, libcap, ncurses
|
2017-09-14 11:13:47 +01:00
|
|
|
, withGtk ? false, gtk2 ? null }:
|
2011-01-10 15:57:23 +00:00
|
|
|
|
2016-09-13 18:42:55 +01:00
|
|
|
assert withGtk -> gtk2 != null;
|
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"}";
|
2019-08-05 04:46:24 +01:00
|
|
|
version = "0.93";
|
2017-09-14 11:13:47 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "traviscross";
|
|
|
|
repo = "mtr";
|
|
|
|
rev = "v${version}";
|
2019-08-05 04:46:24 +01:00
|
|
|
sha256 = "0n0zr9k61w7a9psnzgp7xnc7ll1ic2xzcvqsbbbyndg3v9rff6bw";
|
2011-01-10 15:57:23 +00:00
|
|
|
};
|
2019-11-15 22:08:28 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# https://github.com/traviscross/mtr/pull/315
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/traviscross/mtr/pull/315.patch?full_index=1;
|
|
|
|
sha256 = "18qcsj9058snc2qhq6v6gdbqhz021gi5fgw9h7vfczv45gf0qasa";
|
|
|
|
})
|
|
|
|
];
|
2011-01-10 15:57:23 +00:00
|
|
|
|
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
|
|
|
'';
|
2017-06-20 21:15:20 +01:00
|
|
|
|
2018-08-03 17:52:40 +01:00
|
|
|
configureFlags = stdenv.lib.optional (!withGtk) "--without-gtk";
|
2011-01-10 15:57:23 +00:00
|
|
|
|
2017-03-13 04:22:29 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
2019-08-15 19:29:13 +01:00
|
|
|
buildInputs = [ ncurses ]
|
|
|
|
++ stdenv.lib.optional withGtk gtk2
|
|
|
|
++ stdenv.lib.optional stdenv.isLinux libcap;
|
2017-03-13 04:22:29 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-04-14 18:56:52 +01:00
|
|
|
|
2017-09-14 11:13:47 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-01-10 15:57:23 +00:00
|
|
|
description = "A network diagnostics tool";
|
2019-08-05 04:46:24 +01:00
|
|
|
homepage = "https://www.bitwizard.nl/mtr/";
|
2017-09-14 11:13:47 +01:00
|
|
|
license = licenses.gpl2;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ koral orivej raskin globin ];
|
2017-09-14 11:13:47 +01:00
|
|
|
platforms = platforms.unix;
|
2011-01-10 15:57:23 +00:00
|
|
|
};
|
2015-03-23 11:54:34 +00:00
|
|
|
}
|