Package: guix-patches;
Reported by: Ashish SHUKLA <ashish.is <at> lostca.se>
Date: Sat, 1 Feb 2025 21:39:02 UTC
Severity: normal
Tags: patch
View this message in rfc822 format
From: Ashish SHUKLA <ashish.is <at> lostca.se> To: ludo <at> gnu.org Cc: Ashish SHUKLA <ashish.is <at> lostca.se>, 76001 <at> debbugs.gnu.org Subject: [bug#76001] [PATCH v3] gnu: Add jool. Date: Fri, 21 Feb 2025 21:13:08 +0100
* gnu/packages/networking.scm (jool): Add jool. Change-Id: Ic517fc8c4afbb964363ec68b3d89ce9fcd00c7d8 --- gnu/packages/networking.scm | 71 +++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 1b97853a59..4e2c8a04c5 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -66,6 +66,7 @@ ;;; Copyright © 2024 Alexey Abramov <levenson <at> mmer.org> ;;; Copyright © 2024 James Smith <jsubuntuxp <at> disroot.org> ;;; Copyright © 2025 Sughosha <sughosha <at> disroot.org> +;;; Copyright © 2025 Ashish SHUKLA <ashish.is <at> lostca.se> ;;; ;;; This file is part of GNU Guix. ;;; @@ -92,6 +93,7 @@ (define-module (gnu packages networking) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system gnu) #:use-module (guix build-system go) + #:use-module (guix build-system linux-module) #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) @@ -5060,6 +5062,75 @@ (define-public dnstracer back to the servers which know the data.") (license license:bsd-2))) +(define-public jool + (package + (name "jool") + (version "4.1.13") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/NICMx/Jool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rz8pqn692y61rv33hvr18ngjjyha0m14m4w4yr82xp3km5kfnsj")))) + (build-system linux-module-build-system) + (outputs '("out" "module")) + (native-inputs (list automake autoconf libtool pkg-config)) + (inputs (list libnl iptables)) + (arguments + (list + #:tests? #f + #:phases + #~(modify-phases %standard-phases + (replace 'build + (lambda* (#:key inputs #:allow-other-keys) + (let ((modules-dir + (string-append + (assoc-ref inputs "linux-module-builder") "/lib/modules"))) + (invoke "make" "-C" "src/mod" + (string-append "MODULES_DIR=" modules-dir)) + (invoke "make")))) + + (add-after 'configure 'really-configure + (lambda _ + (setenv "CONFIG_SHELL" (which "sh")) + (setenv "CC" #$(cc-for-target)) + (invoke "./configure" + (string-append "--prefix=" #$output)))) + + (add-after 'unpack 'patch-Makefiles + (lambda _ + (substitute* "src/mod/Makefile" + (("/sbin/depmod") + "true")) + (substitute* "src/usr/iptables/Makefile" + (("^XTABLES_SO_DIR =.*$") + (string-append "XTABLES_SO_DIR = " #$output "/lib/xtables"))))) + + (replace 'install + (lambda* (#:key inputs parallel-build? make-flags + #:allow-other-keys) + (let ((modules-dir + (string-append (assoc-ref inputs "linux-module-builder") + "/lib/modules")) + (module-dir (string-append + #$output:module + "/lib/modules"))) + (invoke "make" "install") + (invoke "make" "-C" "src/mod" "modules_install" + "DEPMOD=true" + "INSTALL_MOD_STRIP=1" + (string-append "MODULES_DIR=" modules-dir) + (string-append "MODULE_DIR=" module-dir) + (string-append "INSTALL_PATH=" module-dir) + (string-append "INSTALL_MOD_PATH=" module-dir)))))))) + (home-page "https://nicmx.github.io/Jool/") + (synopsis "@acronym{SIIT} and @acronym{NAT64} implementation for Linux") + (description "Jool implements @acronym{SIIT} and @acronym{NAT64} for Linux. It provides a kernel module, iptables (and netfilter) extensions, and command-line utilities.") + (license license:gpl2+))) + (define-public dropwatch (package (name "dropwatch") base-commit: dfabaa8a6faa58612a069eb47ee3f35a94b146fb -- 2.48.1
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.