all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#70552] [PATCH] gnu: Add iwgtk.
@ 2024-04-24 16:09 James Smith via Guix-patches via
  2024-04-30 15:00 ` bug#70552: " Z572
  0 siblings, 1 reply; 2+ messages in thread
From: James Smith via Guix-patches via @ 2024-04-24 16:09 UTC (permalink / raw)
  To: 70552; +Cc: James Smith

* gnu/packages/networking.scm (iwgtk): New variable.

Change-Id: I8dc5446fda114f033c1e594028668af41cd5ec85
---
 gnu/packages/networking.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 9d657bc69d..dbc6280416 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -64,6 +64,7 @@
 ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
 ;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
 ;;; Copyright © 2024 Alexey Abramov <levenson@mmer.org>
+;;; Copyright © 2024 James Smith <jsubuntuxp@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -99,6 +100,7 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages)
   #:use-module (gnu packages admin)
   #:use-module (gnu packages adns)
+  #:use-module (gnu packages aidc)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages audio)
   #:use-module (gnu packages autogen)
@@ -144,6 +146,7 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages linux)
   #:use-module (gnu packages lua)
   #:use-module (gnu packages kerberos)
+  #:use-module (gnu packages man)
   #:use-module (gnu packages mpi)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages nettle)
@@ -4152,6 +4155,30 @@ (define-public iwd
 maximum extent possible.")
     (license license:lgpl2.1+)))
 
+(define-public iwgtk
+  (package
+    (name "iwgtk")
+    (version "0.9")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference (url "https://github.com/J-Lentz/iwgtk")
+                           (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1fvxq4ydhzisfn93pcqbspqqi8fwj45v8q104bkm4qfzhf5nvp7w"))))
+    (build-system meson-build-system)
+    (inputs (list gtk qrencode))
+    (native-inputs (list gettext-minimal pkg-config scdoc))
+    (home-page "https://github.com/J-Lentz/iwgtk")
+    (synopsis "Lightweight front-end for iwd")
+    (description "Wireless networking GUI front-end for iwd, with supported
+functionality similar to that of iwctl.  Features include viewing and connecting
+to available networks, managing known networks, provisioning new networks via
+WPS or Wi-Fi Easy Connect, and an indicator icon displaying connection status
+and signal strength.")
+    (license license:gpl3+)))
+
 (define-public libyang
   (package
     (name "libyang")

base-commit: 91d9e145e15241c20729a4f1fa43f3d662f6b806
-- 
2.41.0





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

* bug#70552: [PATCH] gnu: Add iwgtk.
  2024-04-24 16:09 [bug#70552] [PATCH] gnu: Add iwgtk James Smith via Guix-patches via
@ 2024-04-30 15:00 ` Z572
  0 siblings, 0 replies; 2+ messages in thread
From: Z572 @ 2024-04-30 15:00 UTC (permalink / raw)
  To: James Smith via Guix-patches via; +Cc: 70552-done, James Smith

[-- Attachment #1: Type: text/plain, Size: 2919 bytes --]

James Smith via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/networking.scm (iwgtk): New variable.
>
> Change-Id: I8dc5446fda114f033c1e594028668af41cd5ec85
> ---
>  gnu/packages/networking.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index 9d657bc69d..dbc6280416 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -64,6 +64,7 @@
>  ;;; Copyright © 2024 Tomas Volf <~@wolfsden.cz>
>  ;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
>  ;;; Copyright © 2024 Alexey Abramov <levenson@mmer.org>
> +;;; Copyright © 2024 James Smith <jsubuntuxp@disroot.org>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -99,6 +100,7 @@ (define-module (gnu packages networking)
>    #:use-module (gnu packages)
>    #:use-module (gnu packages admin)
>    #:use-module (gnu packages adns)
> +  #:use-module (gnu packages aidc)
>    #:use-module (gnu packages algebra)
>    #:use-module (gnu packages audio)
>    #:use-module (gnu packages autogen)
> @@ -144,6 +146,7 @@ (define-module (gnu packages networking)
>    #:use-module (gnu packages linux)
>    #:use-module (gnu packages lua)
>    #:use-module (gnu packages kerberos)
> +  #:use-module (gnu packages man)
>    #:use-module (gnu packages mpi)
>    #:use-module (gnu packages ncurses)
>    #:use-module (gnu packages nettle)
> @@ -4152,6 +4155,30 @@ (define-public iwd
>  maximum extent possible.")
>      (license license:lgpl2.1+)))
>  
> +(define-public iwgtk
> +  (package
> +    (name "iwgtk")
> +    (version "0.9")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference (url "https://github.com/J-Lentz/iwgtk")
> +                           (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "1fvxq4ydhzisfn93pcqbspqqi8fwj45v8q104bkm4qfzhf5nvp7w"))))
> +    (build-system meson-build-system)
> +    (inputs (list gtk qrencode))
> +    (native-inputs (list gettext-minimal pkg-config scdoc))
> +    (home-page "https://github.com/J-Lentz/iwgtk")
> +    (synopsis "Lightweight front-end for iwd")
> +    (description "Wireless networking GUI front-end for iwd, with supported
> +functionality similar to that of iwctl.  Features include viewing and connecting
> +to available networks, managing known networks, provisioning new networks via
> +WPS or Wi-Fi Easy Connect, and an indicator icon displaying connection status
> +and signal strength.")
> +    (license license:gpl3+)))
> +
>  (define-public libyang
>    (package
>      (name "libyang")
>
> base-commit: 91d9e145e15241c20729a4f1fa43f3d662f6b806

apply, see https://git.savannah.gnu.org/cgit/guix.git/commit/?id=33ddb5f312a1d0adf07b20f157d952f4c0276e8d

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-04-30 15:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-24 16:09 [bug#70552] [PATCH] gnu: Add iwgtk James Smith via Guix-patches via
2024-04-30 15:00 ` bug#70552: " Z572

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.