gnu: wireshark: Update to 3.6.1.
* gnu/packages/networking.scm (wireshark): Update to 3.6.1. [inputs]: Remove labels. [native-inputs]: Remove labels.master
parent
62f1dcc923
commit
3fb9602099
|
@ -1484,14 +1484,14 @@ of the same name.")
|
||||||
(define-public wireshark
|
(define-public wireshark
|
||||||
(package
|
(package
|
||||||
(name "wireshark")
|
(name "wireshark")
|
||||||
(version "3.6.0")
|
(version "3.6.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.wireshark.org/download/src/wireshark-"
|
(uri (string-append "https://www.wireshark.org/download/src/wireshark-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "01nzzqig1z7ix4xb7ycs7wq3qqwq3ipdwp7rznynzmmibgyggj4w"))))
|
(base32 "0f2sjbbwmmz9zr8vphxy0panfji5vv8vazm688mqxy3bzflfsd04"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -1518,37 +1518,36 @@ of the same name.")
|
||||||
;; For now, we disable this phase.
|
;; For now, we disable this phase.
|
||||||
#:validate-runpath? #f))
|
#:validate-runpath? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("c-ares" ,c-ares)
|
(list c-ares
|
||||||
("glib" ,glib)
|
glib
|
||||||
("gnutls" ,gnutls)
|
gnutls
|
||||||
("brotli" ,brotli)
|
brotli
|
||||||
("libcap" ,libcap)
|
libcap
|
||||||
("libgcrypt" ,libgcrypt)
|
libnl
|
||||||
("libnl" ,libnl)
|
libpcap
|
||||||
("libpcap" ,libpcap)
|
libssh
|
||||||
("libssh" ,libssh)
|
libxml2
|
||||||
("libxml2" ,libxml2)
|
lz4
|
||||||
("lz4" ,lz4)
|
lua-5.2 ;Lua 5.3 unsupported
|
||||||
("lua" ,lua-5.2) ;Lua 5.3 unsupported
|
mit-krb5
|
||||||
("krb5" ,mit-krb5)
|
`(,nghttp2 "lib")
|
||||||
("nghttp2:lib" ,nghttp2 "lib")
|
minizip
|
||||||
("minizip" ,minizip)
|
qtbase-5
|
||||||
("qtbase" ,qtbase-5)
|
qtmultimedia
|
||||||
("qtmultimedia" ,qtmultimedia)
|
qtsvg
|
||||||
("qtsvg" ,qtsvg)
|
sbc
|
||||||
("sbc" ,sbc)
|
snappy
|
||||||
("snappy" ,snappy)
|
zlib
|
||||||
("zlib" ,zlib)
|
`(,zstd "lib")))
|
||||||
("zstd:lib" ,zstd "lib")))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bison" ,bison)
|
(list bison
|
||||||
("doxygen" ,doxygen)
|
doxygen
|
||||||
("flex" ,flex)
|
flex
|
||||||
("gettext" ,gettext-minimal)
|
gettext-minimal
|
||||||
("perl" ,perl)
|
perl
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("python" ,python-wrapper)
|
python-wrapper
|
||||||
("qttools" ,qttools)))
|
qttools))
|
||||||
(synopsis "Network traffic analyzer")
|
(synopsis "Network traffic analyzer")
|
||||||
(description "Wireshark is a network protocol analyzer, or @dfn{packet
|
(description "Wireshark is a network protocol analyzer, or @dfn{packet
|
||||||
sniffer}, that lets you capture and interactively browse the contents of
|
sniffer}, that lets you capture and interactively browse the contents of
|
||||||
|
|
Reference in New Issue