diff options
author | Wamm K. D <jaft.r@outlook.com> | 2023-05-27 00:33:58 -0500 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-01 10:56:16 +0200 |
commit | 2c83ccc6097a30c61449f375c120e2a3f932405c (patch) | |
tree | 058a908a9294ff96ef983f2f6bb5a249df4b237e /gnu/packages/pantheon.scm | |
parent | d3eebaf71dda8c1828aeb90596fa06d97eed67cc (diff) | |
download | guix-2c83ccc6097a30c61449f375c120e2a3f932405c.tar.gz guix-2c83ccc6097a30c61449f375c120e2a3f932405c.zip |
gnu: Add pantheon-wallpapers.
* gnu/packages/pantheon.scm (pantheon-wallpapers): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/pantheon.scm')
-rw-r--r-- | gnu/packages/pantheon.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm index acb19a3ef8..5203bf746b 100644 --- a/gnu/packages/pantheon.scm +++ b/gnu/packages/pantheon.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com> +;;; Copyright © 2023 Wamm K. D. <jaft.r@outlook.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -25,6 +26,7 @@ #:use-module (gnu packages gnupg) #:use-module (gnu packages gtk) #:use-module (gnu packages package-management) + #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages xml) @@ -160,3 +162,25 @@ desktop.") on Flathub or another third-party website providing a Flatpak app for download.") (license license:gpl3+))) + +(define-public pantheon-wallpapers + (package + (name "pantheon-wallpapers") + (version "7.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elementary/wallpapers/") + (commit version))) + (sha256 (base32 + "0km3h52kapbm8ymwxdxasz80qbgzkfni7981pdyf740wjp7linwb")))) + (build-system meson-build-system) + (native-inputs (list gettext-minimal)) ; for msgfmt + (inputs (list libexif)) + (synopsis "Wallpapers for the Pantheon desktop") + (description "This package provides wallpapers for the Pantheon desktop.") + (home-page "https://github.com/elementary/wallpapers") + (license (list license:cc-by-sa4.0 + license:cc0 + (license:non-copyleft "https://unsplash.com/license") + (license:non-copyleft "https://www.pexels.com/license/"))))) |