summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2017-01-30 14:50:23 -0500
committerLeo Famulari <leo@famulari.name>2017-01-30 15:51:32 -0500
commitaf7d72b16c7652e9ddc3c441017de5c9bb9205f2 (patch)
tree532aedae4ba1135132e2046ef889eb2beb3b7fe0
parentdf4a2b44d31f7da92d1976b11f401c64f798d6f1 (diff)
gnu: tcpdump: Update to 4.9.0 [security fixes].
Fixes CVE-2016-{7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933 7934,7935,7936,7937,7938,7939,7940,7973,7974,7975,7983,7984,7985,7986,7992,7993, 8574,8575} and CVE-2017-{5202,5203,5204,5205,5341,5342,5482,5483,5484,5485, 5486}. * gnu/packages/admin.scm (tcpdump): Update to 4.9.0. [source]: Add alternate URL and set the file-name.
-rw-r--r--gnu/packages/admin.scm18
1 files changed, 14 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 12aa9e70a76..96aececbbfb 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -633,14 +633,24 @@ network statistics collection, security monitoring, network debugging, etc.")
633(define-public tcpdump 633(define-public tcpdump
634 (package 634 (package
635 (name "tcpdump") 635 (name "tcpdump")
636 (version "4.7.4") 636 (version "4.9.0")
637 (source (origin 637 (source (origin
638 (method url-fetch) 638 (method url-fetch)
639 (uri (string-append "http://www.tcpdump.org/release/tcpdump-" 639 ;; We use this Debian URL while the upstream URL is still
640 version ".tar.gz")) 640 ;; officially private. This is the result of a botched
641 ;; coordinated release of tcpdump 4.9.0. I verified with
642 ;; the tcpdump maintainers that the upstream URL provides
643 ;; the same data as this Debian URL.
644 (uri
645 (list
646 (string-append "http://http.debian.net/debian/pool/main/t/"
647 name "/" name "_" version ".orig.tar.gz")
648 (string-append "http://www.tcpdump.org/release/tcpdump-"
649 version ".tar.gz")))
650 (file-name (string-append name "-" version ".tar.gz"))
641 (sha256 651 (sha256
642 (base32 652 (base32
643 "1byr8w6grk08fsq0444jmcz9ar89lq9nf4mjq2cny0w9k8k21rbb")))) 653 "0pjsxsy8l71i813sa934cwf1ryp9xbr7nxwsvnzavjdirchq3sga"))))
644 (build-system gnu-build-system) 654 (build-system gnu-build-system)
645 (inputs `(("libpcap" ,libpcap) 655 (inputs `(("libpcap" ,libpcap)
646 ("openssl" ,openssl))) 656 ("openssl" ,openssl)))