summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/networking.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 6a742f6e6bc..867883b8bae 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1808,11 +1808,13 @@ of the same name.")
1808 (version "4.4.1") 1808 (version "4.4.1")
1809 (source 1809 (source
1810 (origin 1810 (origin
1811 (method url-fetch) 1811 (method git-fetch)
1812 (uri (string-append "https://www.wireshark.org/download/src/wireshark-" 1812 (uri (git-reference
1813 version ".tar.xz")) 1813 (url "https://gitlab.com/wireshark/wireshark")
1814 (commit (string-append "wireshark-" version))))
1815 (file-name (git-file-name name version))
1814 (sha256 1816 (sha256
1815 (base32 "1v2nflm8rdifc6pwlzn1ciz22wl15zwkqs3r7gjw60kh59brd7ib")))) 1817 (base32 "0cc1dqmlc2jqgd6gg407qk0qkg3cjbiafzw8pf2pxhnh7n94fyki"))))
1816 (build-system qt-build-system) 1818 (build-system qt-build-system)
1817 (arguments 1819 (arguments
1818 (list 1820 (list
@@ -1821,7 +1823,8 @@ of the same name.")
1821 ;; fail. 1823 ;; fail.
1822 #:qtbase qtbase 1824 #:qtbase qtbase
1823 #:configure-flags 1825 #:configure-flags
1824 #~(list (string-append "-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath=" #$output "/lib")) 1826 #~(list (string-append "-DVCSVERSION_OVERRIDE=" #$version)
1827 (string-append "-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath=" #$output "/lib"))
1825 #:phases 1828 #:phases
1826 #~(modify-phases %standard-phases 1829 #~(modify-phases %standard-phases
1827 (replace 'check 1830 (replace 'check