nixpkgs/pkgs/tools/networking/mtr/default.nix

41 lines
1,012 B
Nix
Raw Normal View History

2017-09-14 12:13:47 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses
, withGtk ? false, gtk2 ? null }:
assert withGtk -> gtk2 != null;
2015-03-23 12:54:34 +01:00
stdenv.mkDerivation rec {
2017-09-14 12:13:47 +02:00
name="mtr-${version}";
version="0.92";
src = fetchFromGitHub {
owner = "traviscross";
repo = "mtr";
rev = "v${version}";
sha256 = "0ca2ml846cv0zzkpd8y7ah6i9b3czrr8wlxja3cray94ybwb294d";
};
2017-09-14 12:13:47 +02:00
preConfigure = ''
echo ${version} > .tarball-version
./bootstrap.sh
substituteInPlace Makefile.in --replace ' install-exec-hook' ""
'';
configureFlags = stdenv.lib.optional (!withGtk) "--without-gtk";
2017-03-13 05:22:29 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-09-14 12:13:47 +02:00
buildInputs = [ ncurses ] ++ stdenv.lib.optional withGtk gtk2;
2017-03-13 05:22:29 +01:00
enableParallelBuilding = true;
2017-09-14 12:13:47 +02:00
meta = with stdenv.lib; {
description = "A network diagnostics tool";
2017-09-14 12:13:47 +02:00
homepage = http://www.bitwizard.nl/mtr/;
license = licenses.gpl2;
2017-03-13 05:22:29 +01:00
maintainers = with maintainers; [ koral orivej raskin ];
2017-09-14 12:13:47 +02:00
platforms = platforms.unix;
};
2015-03-23 12:54:34 +01:00
}