From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37334) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ibV7X-0002ua-67 for guix-patches@gnu.org; Sun, 01 Dec 2019 14:43:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ibV7W-00035F-1S for guix-patches@gnu.org; Sun, 01 Dec 2019 14:43:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:59009) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ibV7V-000359-UR for guix-patches@gnu.org; Sun, 01 Dec 2019 14:43:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ibV7V-0005YV-Rp for guix-patches@gnu.org; Sun, 01 Dec 2019 14:43:01 -0500 Subject: [bug#38385] [PATCH v2 1/2] gnu: Add vde2. Resent-Message-ID: From: Diego Nicola Barbato Date: Sun, 1 Dec 2019 20:41:31 +0100 Message-Id: <20191201194132.9459-2-dnbarbato@posteo.de> In-Reply-To: <20191201194132.9459-1-dnbarbato@posteo.de> References: <20191126125900.32589-1-dnbarbato@posteo.de> <20191201194132.9459-1-dnbarbato@posteo.de> 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: 38385@debbugs.gnu.org Cc: Diego Nicola Barbato * gnu/packages/networking.scm (vde2): New variable. --- gnu/packages/networking.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 3ab5e71828..5d5806e31f 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2019 Brice Waegeneire ;;; Copyright © 2019 Tonton ;;; Copyright © 2019 Alex Griffin +;;; Copyright © 2019 Diego N. Barbato ;;; ;;; This file is part of GNU Guix. ;;; @@ -2717,3 +2718,33 @@ a service (such as an HTTP or SSH server) on localhost visible to the wider Internet, even behind NAT or restrictive firewalls. A managed front-end relay service is available at @url{https://pagekite.net/}, or you can run your own.") (license license:agpl3+))) + +(define-public vde2 + (package + (name "vde2") + (version "2.3.2") + (source + (origin + (method url-fetch) + (uri "mirror://sourceforge/vde/vde2/2.3.2/vde2-2.3.2.tar.gz") + (sha256 + (base32 "14xga0ib6p1wrv3hkl4sa89yzjxv7f1vfqaxsch87j6scdm59pr2")))) + (build-system gnu-build-system) + (arguments + `(#:parallel-build? #f)) ; Build fails if #t. + (inputs + `(("python" ,python) + ("libpcap" ,libpcap) + ("openssl" ,openssl-1.0))) ; Build fails with 1.1. + (home-page "https://github.com/virtualsquare/vde-2") + (synopsis "Virtual Distributed Ethernet") + (description "VDE is a set of programs to provide virtual software-defined +Ethernet network interface controllers across multiple virtual or +physical, local or remote devices. The VDE architecture provides +virtual counterparts to hardware components such as switches and +cables.") + (license (list license:gpl2 + license:lgpl2.1 ; libvdeplug + (license:non-copyleft ; slirpvde + "file://COPYING.slirpvde" + "See COPYING.slirpvde in the distribution."))))) -- 2.24.0