unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59644] [PATCH] gnu: Add network-manager-fortisslvpn.
@ 2022-11-27 21:57 Arjan Adriaanse
  2022-12-05 16:16 ` bug#59644: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Arjan Adriaanse @ 2022-11-27 21:57 UTC (permalink / raw)
  To: 59644; +Cc: Arjan Adriaanse

* gnu/packages/gnome.scm (network-manager-fortisslvpn): New variable.
---

This package can be used as VPN plugin in the NetworkManager service
and its definition is based on the other VPN plugin packages.

gnu/packages/gnome.scm | 62 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f81b44cca2..ec16ae042a 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -72,6 +72,7 @@
 ;;; Copyright © 2022 Leo Nikkilä <hello@lnikki.la>
 ;;; Copyright © 2022 Rene Saavedra <nanuui@protonmail.com>
 ;;; Copyright © 2022 Alexandros Theodotou <alex@zrythm.org>
+;;; Copyright © 2022 Arjan Adriaanse <arjan@adriaan.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8710,6 +8711,67 @@ (define-public network-manager-openconnect
                   ;; so that 'network-manager-service-type' creates it.
                   (user-accounts . ("nm-openconnect"))))))
 
+(define-public network-manager-fortisslvpn
+    (package
+    (name "network-manager-fortisslvpn")
+    (version "1.4.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://gnome/sources/NetworkManager-fortisslvpn/"
+                    (version-major+minor version)
+                    "/NetworkManager-fortisslvpn-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1ynsqmv8xz1cffnai4hfh0ab0dmlazpv72krhlsv45mm95iy4mdh"))
+              (modules '((guix build utils)))
+              (snippet
+               '(substitute* "Makefile.in"
+                  ;; do not try to make state directory
+                  (("\\$\\(DESTDIR\\)\\$\\(fortisslvpn_statedir\\)") "")
+                  ;; use state directory of the NetworkManager service
+                  (("\\$\\(fortisslvpn_statedir\\)")
+                   "/var/lib/NetworkManager")))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags '("--enable-absolute-paths"
+                           "--localstatedir=/var"
+                           "--with-gtk4=yes")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'configure 'patch-path
+           (lambda* (#:key inputs #:allow-other-keys)
+             (let* ((ovpn (search-input-file inputs "/bin/openfortivpn"))
+                    (pretty-ovpn (string-append "\"" ovpn "\"")))
+               (for-each
+                (lambda (file)
+                  (substitute* file
+                    (("\"/usr/local/bin/openfortivpn\"") pretty-ovpn)
+                    (("\"/usr/bin/openfortivpn\"") pretty-ovpn)))
+                '("src/nm-fortisslvpn-service.c"
+                  "properties/nm-fortisslvpn-editor.c"))))))))
+    (native-inputs
+     (list intltool
+           `(,glib "bin")
+           pkg-config))
+    (inputs
+     (list gtk+
+           gtk
+           kmod
+           libnma
+           libsecret
+           network-manager
+           openfortivpn
+           pango-next                   ;TODO: remove after it's the default
+           ppp))
+    (home-page "https://wiki.gnome.org/Projects/NetworkManager/VPN")
+    (synopsis "Fortinet SSLVPN plug-in for NetworkManager")
+    (description
+     "This extension of NetworkManager allows it to take care of connections
+to virtual private networks (VPNs) via Fortinet SSLVPN.")
+    (license license:gpl2+)
+    (properties `((upstream-name . "NetworkManager-fortisslvpn")))))
+
 (define-public mobile-broadband-provider-info
   (package
     (name "mobile-broadband-provider-info")

base-commit: e75e699ec30fd7d9eab50dd2c98a3a25fe50ffc0
-- 
2.38.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#59644: [PATCH] gnu: Add network-manager-fortisslvpn.
  2022-11-27 21:57 [bug#59644] [PATCH] gnu: Add network-manager-fortisslvpn Arjan Adriaanse
@ 2022-12-05 16:16 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-12-05 16:16 UTC (permalink / raw)
  To: Arjan Adriaanse; +Cc: 59644-done

Hi,

Arjan Adriaanse <arjan@adriaan.se> skribis:

> * gnu/packages/gnome.scm (network-manager-fortisslvpn): New variable.

I passed it through ‘guix style’ and committed.  Thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-05 16:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-27 21:57 [bug#59644] [PATCH] gnu: Add network-manager-fortisslvpn Arjan Adriaanse
2022-12-05 16:16 ` bug#59644: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).