unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64443] [PATCH] gnu: Add gp-saml-gui
@ 2023-07-03 15:59 Unstable Horse
  2023-07-04 10:58 ` [bug#64443] [PATCH v1] " Unstable Horse
  2023-07-05 16:50 ` [bug#64443] [PATCH v2] " Unstable Horse
  0 siblings, 2 replies; 6+ messages in thread
From: Unstable Horse @ 2023-07-03 15:59 UTC (permalink / raw)
  To: 64443

* gnu/packages/vpn.scm (gp-saml-gui): New variable.
---
 gnu/packages/vpn.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index af070526ec..41e8f0996f 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -67,6 +67,7 @@ (define-module (gnu packages vpn)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gl)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages guile)
@@ -86,6 +87,7 @@ (define-module (gnu packages vpn)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages samba)
   #:use-module (gnu packages tls)
+  #:use-module (gnu packages webkit)
   #:use-module (gnu packages xml))
 
 (define-public bitmask
@@ -279,6 +281,45 @@ (define-public bitmask
     (home-page "https://bitmask.net/")
     (license license:gpl3+)))
 
+(define-public gp-saml-gui
+  ;; No release.
+  (let ((commit "258f47cdc4a8ed57a1eef16667f6cad0d1cb49b1")
+        (revision "1"))
+    (package
+      (name "gp-saml-gui")
+      (version (git-version "0.0.0" revision commit))
+      (home-page "https://github.com/dlenski/gp-saml-gui")
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url home-page)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0qj2mmi6lfkq5c4v6fbzgriajqc27k9kb1i9k2r776pn5pq14pc3"))))
+      (build-system python-build-system)
+      (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (add-after 'install 'wrap-program
+             (lambda* (#:key outputs #:allow-other-keys)
+               (wrap-program
+                   (string-append (assoc-ref outputs "out") "/bin/gp-saml-gui")
+                 `("GUIX_PYTHONPATH" ":" prefix
+                   (,(getenv "GUIX_PYTHONPATH")))
+                 `("GI_TYPELIB_PATH" ":" prefix
+                   (,(getenv "GI_TYPELIB_PATH")))))))))
+      (inputs
+       (list python-pygobject python-urllib3 python-requests webkitgtk-with-libsoup2))
+      (propagated-inputs
+       (list openconnect))
+      (synopsis "Interactively authenticate to GlobalProtect VPNs that require SAML")
+      (description "This is a helper script to allow you to interactively login
+to a GlobalProtect VPN that uses SAML authentication, so that you can
+subsequently connect with OpenConnect.")
+      (license license:gpl3+))))
+
 (define-public gvpe
   (package
     (name "gvpe")
-- 
2.40.1





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

end of thread, other threads:[~2023-08-08 14:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-03 15:59 [bug#64443] [PATCH] gnu: Add gp-saml-gui Unstable Horse
2023-07-04 10:58 ` [bug#64443] [PATCH v1] " Unstable Horse
2023-07-05 14:22   ` Bruno Victal
2023-07-05 15:49     ` Unstable Horse
2023-07-05 16:50 ` [bug#64443] [PATCH v2] " Unstable Horse
2023-08-08 14:47   ` bug#64443: [PATCH] " 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).