gnu: mtr: Update to 0.93.

* gnu/packages/networking.scm (mtr): Update to 0.93.
[native-inputs]: Remove now-unnecessary autoconf.
This commit is contained in:
Tobias Geerinckx-Rice 2019-12-02 18:27:55 +01:00
parent fc1ca29da3
commit a36eba4716
No known key found for this signature in database
GPG key ID: D889B0F018C5493C

View file

@ -1947,21 +1947,18 @@ (define-public libnet
(define-public mtr (define-public mtr
(package (package
(name "mtr") (name "mtr")
(version "0.92") (version "0.93")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "ftp://ftp.bitwizard.nl/" name "/" (uri (string-append "ftp://ftp.bitwizard.nl/" name "/"
name "-" version ".tar.gz")) name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "10j3ds3p27jygys4x08kj8fi3zlsgiv72xsfazkah6plwawrv5zj")))) (base32 "03gid8g4r6a9r40855s4345xm1bylj2kfqkicjwxpmvvccyng712"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("libcap" ,libcap) `(("libcap" ,libcap)
("ncurses" ,ncurses))) ("ncurses" ,ncurses)))
(native-inputs
;; The 0.92 release tarball still requires the autoheader tool.
`(("autoconf" ,autoconf)))
(arguments (arguments
`(#:tests? #f)) ; tests require network access `(#:tests? #f)) ; tests require network access
(home-page "https://www.bitwizard.nl/mtr/") (home-page "https://www.bitwizard.nl/mtr/")