guix_mirror_bot pushed a commit to branch master
in repository guix.

commit fe549ea710b420cbd25cc2e3a69f41f604c75363
Author: Sughosha <[email protected]>
AuthorDate: Tue Apr 7 17:35:48 2026 +0530

    gnu: Add nwg-shell-wallpapers.
    
    * gnu/packages/nwg-shell.scm: New file.
    (nwg-shell-wallpapers): New variable.
    * gnu/local.mk (GNU_SYSTEM_MODULES): Register the new file.
    
    Relates-to: guix/guix!7644
    Reviewed-by: Maxim Cournoyer <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/local.mk               |  1 +
 gnu/packages/nwg-shell.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/gnu/local.mk b/gnu/local.mk
index 3cf3da283c..4035fe5e4c 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -524,6 +524,7 @@ GNU_SYSTEM_MODULES =                                \
   %D%/packages/nushell.scm                     \
   %D%/packages/nutrition.scm                   \
   %D%/packages/nvi.scm                         \
+  %D%/packages/nwg-shell.scm           \
   %D%/packages/nx.scm                          \
   %D%/packages/ocaml.scm                       \
   %D%/packages/ocr.scm                         \
diff --git a/gnu/packages/nwg-shell.scm b/gnu/packages/nwg-shell.scm
new file mode 100644
index 0000000000..b9262ada55
--- /dev/null
+++ b/gnu/packages/nwg-shell.scm
@@ -0,0 +1,51 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2026 Sughosha <[email protected]>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages nwg-shell)
+  #:use-module (guix build-system copy)
+  #:use-module (guix gexp)
+  #:use-module (guix git-download)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (gnu packages))
+
+(define-public nwg-shell-wallpapers
+  (package
+    (name "nwg-shell-wallpapers")
+    (version "1.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/nwg-piotr/nwg-shell-wallpapers";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0b1k4fnkgzsnq64ziv5bhp930dplacpad6vzqf3w6pabp9xp3skv"))))
+    (build-system copy-build-system)
+    (arguments
+     (list
+      #:install-plan
+      #~`(("wallpapers" "share/backgrounds/nwg-shell")
+          ("README.md" "share/doc/nwg-shell-wallpapers"))))
+    (home-page "https://github.com/nwg-piotr/nwg-shell-wallpapers";)
+    (synopsis "Selection of wallpapers contributed to the nwg-shell project")
+    (description
+     "nwg-shell-wallpapers is a selection of wallpapers contributed to the
+nwg-shell project.")
+    (license license:cc0)))

Reply via email to