From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51753) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gy4sG-0006gZ-7d for guix-patches@gnu.org; Sun, 24 Feb 2019 20:16:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gy4sE-0000YW-NO for guix-patches@gnu.org; Sun, 24 Feb 2019 20:16:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37152) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gy4sE-0000XV-8q for guix-patches@gnu.org; Sun, 24 Feb 2019 20:16:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gy4sE-0007pu-4z for guix-patches@gnu.org; Sun, 24 Feb 2019 20:16:02 -0500 Subject: [bug#34643] [PATCH 1/2] gnu: Add WireGuard. References: <20190225011257.GA30833@jasmine.lan> In-Reply-To: <20190225011257.GA30833@jasmine.lan> Resent-Message-ID: From: Leo Famulari Date: Sun, 24 Feb 2019 20:15:02 -0500 Message-Id: <9b27f8b284f9f92f7bbc8c8edc7dbadd54a5035d.1551057302.git.leo@famulari.name> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34643@debbugs.gnu.org * gnu/packages/linux.scm (wireguard): New variable. --- gnu/packages/linux.scm | 50 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6463510eeb..983e335e30 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -19,7 +19,7 @@ ;;; Copyright © 2016, 2018 Rene Saavedra ;;; Copyright © 2016 Carlos Sánchez de La Lama ;;; Copyright © 2016, 2017 Nils Gillmann -;;; Copyright © 2017, 2018 Leo Famulari +;;; Copyright © 2017, 2018, 2019 Leo Famulari ;;; Copyright © 2017 José Miguel Sánchez García ;;; Copyright © 2017 Gábor Boskovits ;;; Copyright © 2017 Mathieu Othacehe @@ -5132,3 +5132,51 @@ the correct permissions and ownership, and then pack them up, or one would have to construct the archives directly, without using the archiver.") (home-page "http://freshmeat.sourceforge.net/projects/fakeroot") (license license:gpl3+))) + +(define-public wireguard + (package + (name "wireguard") + (version "0.0.20190123") + (source (origin + (method url-fetch) + (uri (string-append "https://git.zx2c4.com/WireGuard/snapshot/" + "WireGuard-" version ".tar.xz")) + (sha256 + (base32 + "16yzzy4i0z2zslmyr3kppkvkrxryzwdil6v270w9w5mg65v3rlgd")))) + (build-system gnu-build-system) + (outputs '("out" ; The WireGuard userspace tools + "kernel-patch")) ; A patch to build Linux with WireGuard support + (arguments + `(#:make-flags + (list "CC=gcc" + "WITH_BASHCOMPLETION=yes" + ;; Build and install the helper script wg-quick(8). + "WITH_WGQUICK=yes" + (string-append "PREFIX=" (assoc-ref %outputs "out")) + (string-append "SYSCONFDIR=" (assoc-ref %outputs "out") "/etc")) + #:phases + (modify-phases %standard-phases + (delete 'configure) ; No ./configure script + (add-after 'unpack 'make-patch + (lambda* (#:key outputs #:allow-other-keys) + (let* ((output (assoc-ref outputs "kernel-patch")) + (patch-file (string-append output "/wireguard.patch")) + (patch-builder "./contrib/kernel-tree/create-patch.sh")) + (mkdir-p output) + ;; XXX Do this in Scheme? + (zero? (system (string-append "bash " patch-builder " > " patch-file))) + #t))) + (add-after 'make-patch 'chdir + (lambda _ + (chdir "src/tools") + #t))))) + (inputs + `(("libmnl" ,libmnl))) + (home-page "https://www.wireguard.com/") + (synopsis "Tools for configuring WireGuard") + (description "This package provides the userspace tools for setting and +retrieving configuration of WireGuard network tunnel interfaces, and a patch +that can be applied to a Linux kernel source tree in order to build it with +WireGuard support.") + (license license:gpl2))) -- 2.20.1