mtr: 0.87 -> 0.92

This commit is contained in:
Peter Hoeg 2017-09-14 18:13:47 +08:00
parent 2a36c6c185
commit 68764d50b3

View File

@ -1,34 +1,40 @@
{stdenv, fetchurl, autoreconfHook, pkgconfig, ncurses
, withGtk ? false, gtk2 ? null}:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses
, withGtk ? false, gtk2 ? null }:
assert withGtk -> gtk2 != null;
with stdenv.lib;
stdenv.mkDerivation rec {
baseName="mtr";
version="0.87";
name="${baseName}-${version}";
name="mtr-${version}";
version="0.92";
src = fetchurl {
url="ftp://ftp.bitwizard.nl/${baseName}/${name}.tar.gz";
sha256 = "17zi99n8bdqrwrnbfyjn327jz4gxx287wrq3vk459c933p34ff8r";
src = fetchFromGitHub {
owner = "traviscross";
repo = "mtr";
rev = "v${version}";
sha256 = "0ca2ml846cv0zzkpd8y7ah6i9b3czrr8wlxja3cray94ybwb294d";
};
preConfigure = "substituteInPlace Makefile.in --replace ' install-exec-hook' ''";
preConfigure = ''
echo ${version} > .tarball-version
configureFlags = optionalString (!withGtk) "--without-gtk";
./bootstrap.sh
substituteInPlace Makefile.in --replace ' install-exec-hook' ""
'';
configureFlags = stdenv.lib.optionalString (!withGtk) "--without-gtk";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ ncurses ] ++ optional withGtk gtk2;
buildInputs = [ ncurses ] ++ stdenv.lib.optional withGtk gtk2;
enableParallelBuilding = true;
meta = {
homepage = http://www.bitwizard.nl/mtr/;
meta = with stdenv.lib; {
description = "A network diagnostics tool";
homepage = http://www.bitwizard.nl/mtr/;
license = licenses.gpl2;
maintainers = with maintainers; [ koral orivej raskin ];
platforms = platforms.unix;
license = licenses.gpl2;
platforms = platforms.unix;
};
}