This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 87bfe7ad50 gnu: nwg-launchers: Move to nwg-shell and realign.
87bfe7ad50 is described below

commit 87bfe7ad508c56bc0b9a77f76b509cceeae87ac3
Author: Sughosha <[email protected]>
AuthorDate: Fri Apr 17 16:39:43 2026 +0530

    gnu: nwg-launchers: Move to nwg-shell and realign.
    
    * gnu/packages/nwg-shell.scm (nwg-launchers): New variable.
    * gnu/packages/xdisorg.scm (nwg-launchers): Replace with deprecated alias.
    
    Merges: guix/guix!7961
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/nwg-shell.scm | 30 ++++++++++++++++++++++++++++++
 gnu/packages/xdisorg.scm   | 26 ++++----------------------
 2 files changed, 34 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/nwg-shell.scm b/gnu/packages/nwg-shell.scm
index e083be33c6..5627e0c50c 100644
--- a/gnu/packages/nwg-shell.scm
+++ b/gnu/packages/nwg-shell.scm
@@ -19,6 +19,7 @@
 (define-module (gnu packages nwg-shell)
   #:use-module (guix build-system copy)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system meson)
   #:use-module (guix build-system pyproject)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -29,6 +30,7 @@
   #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages curl)
+  #:use-module (gnu packages cpp)
   #:use-module (gnu packages fonts)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages glib)
@@ -176,6 +178,34 @@ Hyprland.
 This application is a part of the nwg-shell project.")
     (license license:expat)))
 
+(define-public nwg-launchers
+  (package
+    (name "nwg-launchers")
+    (version "0.7.1.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/nwg-piotr/nwg-launchers";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0hq2qiqxvrw3g515ywcb676ljc8mdw3pyslgxr3vahizfljah1pv"))))
+    (build-system meson-build-system)
+    (native-inputs
+     (list nlohmann-json
+           pkg-config))
+    (inputs
+     (list gtk-layer-shell
+           gtkmm-3
+           (librsvg-for-system)))
+    (home-page "https://github.com/nwg-piotr/nwg-launchers";)
+    (synopsis "Application launchers for wlroots")
+    (description
+     "This package provides an application grid, button bar, and dmenu
+applications for Sway and other wlroots-based Wayland compositors.")
+    (license license:gpl3+)))
+
 (define-public nwg-bar
   (package
     (name "nwg-bar")
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index a89d64ba82..1405c6e9b2 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -103,6 +103,7 @@
   #:use-module (guix build-system pyproject)
   #:use-module (guix build-system qt)
   #:use-module (guix build-system scons)
+  #:use-module (guix deprecation)
   #:use-module (guix download)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
@@ -3965,28 +3966,9 @@ such as sway, similar to @command{rofi}.")
     (home-page "https://hg.sr.ht/~scoopta/wofi";)
     (license license:gpl3+)))
 
-(define-public nwg-launchers
-  (package
-    (name "nwg-launchers")
-    (version "0.7.1.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/nwg-piotr/nwg-launchers";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0hq2qiqxvrw3g515ywcb676ljc8mdw3pyslgxr3vahizfljah1pv"))))
-    (build-system meson-build-system)
-    (native-inputs (list nlohmann-json pkg-config))
-    (inputs (list gtk-layer-shell gtkmm-3 (librsvg-for-system)))
-    (home-page "https://github.com/nwg-piotr/nwg-launchers";)
-    (synopsis "Application launchers for wlroots")
-    (description
-     "This package provides an application grid, button bar, and dmenu
-applications for Sway and other wlroots-based Wayland compositors.")
-    (license license:gpl3+)))
+;; XXX: Deprecated on <2026-0624>
+(define-deprecated/public-alias nwg-launchers
+  (@ (gnu packages nwg-shell) nwg-launchers))
 
 (define-public dex
   (package

Reply via email to