summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2019-12-02 18:27:55 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2019-12-03 01:52:45 +0100
commita36eba4716c59d89357b562103a0876adf814033 (patch)
treeb4e9939d5eacb9c080415dfe8a029202be54dd45
parentfc1ca29da3835c808460c4d594aeb1a0c81db2da (diff)
downloadguix-a36eba4716c59d89357b562103a0876adf814033.tar.gz
gnu: mtr: Update to 0.93.
* gnu/packages/networking.scm (mtr): Update to 0.93.
[native-inputs]: Remove now-unnecessary autoconf.
-rw-r--r--gnu/packages/networking.scm7
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 45e3a34369..fdc16b2a92 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1947,21 +1947,18 @@ can be whipped up with little effort.")
 (define-public mtr
   (package
     (name "mtr")
-    (version "0.92")
+    (version "0.93")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "ftp://ftp.bitwizard.nl/" name "/"
                            name "-" version ".tar.gz"))
        (sha256
-        (base32 "10j3ds3p27jygys4x08kj8fi3zlsgiv72xsfazkah6plwawrv5zj"))))
+        (base32 "03gid8g4r6a9r40855s4345xm1bylj2kfqkicjwxpmvvccyng712"))))
     (build-system gnu-build-system)
     (inputs
      `(("libcap" ,libcap)
        ("ncurses" ,ncurses)))
-    (native-inputs
-     ;; The 0.92 release tarball still requires the ‘autoheader’ tool.
-     `(("autoconf" ,autoconf)))
     (arguments
      `(#:tests? #f))                    ; tests require network access
     (home-page "https://www.bitwizard.nl/mtr/")