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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.2 KiB
Nix
Raw Normal View History

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