diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-03-15 22:43:59 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-03-15 21:18:43 -0400 |
commit | 9f3a929828930c3e5dfc6f6e7a3516da6bb7cd00 (patch) | |
tree | a1de929bb58246371d37895caf2aa6b9bc515f33 /gnu | |
parent | fe445aa9f4a0101d00ee5e53ed28098ad6549f10 (diff) | |
download | guix-9f3a929828930c3e5dfc6f6e7a3516da6bb7cd00.tar.gz |
gnu: thc-ipv6: Update to 3.8.
* gnu/packages/networking.scm (thc-ipv6): Update to 3.8. [source]: Use version tag instead of commit. [arguments]: Use Gexps. <make-flags>: Use cc-for-target as it's commented out in Makefile. <phases>: Combine the phases 'use-source-date-epoch-in-manpages' and 'patch-paths' into a new 'patch-makefile' phase. Simplify 'install-more-docs' phase. [inputs]: Add libnetfilter-queue and libnfnetlink. Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 95 |
1 files changed, 47 insertions, 48 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index acf2e87d89..bf5f7ad2e7 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -56,6 +56,7 @@ ;;; Copyright © 2022 Reza Alizadeh Majd <r.majd@pantherx.org> ;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2023 Andreas Enge <andreas@enge.fr> +;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3057,56 +3058,54 @@ The filters can be aggregated and exported in the most common formats.") license:bsd-2)))) ; everything else, but missing headers (define-public thc-ipv6 - (let ((revision "0") - (commit "4bb72573e0950ce6f8ca2800a10748477020029e")) - (package - (name "thc-ipv6") - (version (git-version "3.4" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/vanhauser-thc/thc-ipv6") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1x5i6vbsddqc2yks7r1a2fw2fk16qxvd6hpzh1lykjfpkal8fdir")))) - (build-system gnu-build-system) - (arguments - `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:tests? #f ; No test suite. - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'use-source-date-epoch-in-manpages - ;; For reproducible builds - (lambda _ - (substitute* "Makefile" - (("date --iso-8601") - "date --iso-8601 --utc --date=@$(SOURCE_DATE_EPOCH)")))) - (delete 'configure) ; No ./configure script. - (add-before 'build 'patch-paths - (lambda _ - (substitute* "Makefile" - (("/bin/echo") "echo")) - #t)) - (add-after 'install 'install-more-docs - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (doc (string-append out "/share/thc-ipv6/doc"))) - (install-file "README" doc) - (install-file "HOWTO-INJECT" doc) - #t)))))) - ;; TODO Add libnetfilter-queue once packaged. - (inputs - (list libpcap openssl perl)) - (home-page "https://github.com/vanhauser-thc/thc-ipv6") - (synopsis "IPv6 security research toolkit") - (description "The THC IPv6 Toolkit provides command-line tools and a library + (package + (name "thc-ipv6") + (version "3.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/vanhauser-thc/thc-ipv6") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07kwika1zdq62s5p5z94xznm77dxjxdg8k0hrg7wygz50151nzmx")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f ; No test suite. + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-makefile + (lambda _ + (substitute* "Makefile" + ;; For reproducible builds + (("date --iso-8601") + "date --iso-8601 --utc --date=@$(SOURCE_DATE_EPOCH)") + (("/bin/echo") "echo")))) + (delete 'configure) ; No ./configure script. + (add-after 'install 'install-more-docs + (lambda _ + (let ((doc (string-append #$output "/share/thc-ipv6/doc"))) + (install-file "README" doc) + (install-file "HOWTO-INJECT" doc))))))) + (inputs + (list libnetfilter-queue + libnfnetlink + libpcap + openssl + perl)) + (home-page "https://github.com/vanhauser-thc/thc-ipv6") + (synopsis "IPv6 security research toolkit") + (description "The THC IPv6 Toolkit provides command-line tools and a library for researching IPv6 implementations and deployments. It requires Linux 2.6 or newer and only works on Ethernet network interfaces.") - ;; AGPL 3 with exception for linking with OpenSSL. See the 'LICENSE' file in - ;; the source distribution for more information. - (license license:agpl3)))) + ;; AGPL 3 with exception for linking with OpenSSL. See the 'LICENSE' file in + ;; the source distribution for more information. + (license license:agpl3))) (define-public bmon (package |