gnu: Add xwallpaper.
* gnu/packages/xdisorg.scm (xwallpaper): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>master
parent
be41d7d91d
commit
79e5d150c6
|
@ -34,6 +34,7 @@
|
||||||
;;; Copyright © 2020 Ivan Vilata i Balaguer <ivan@selidor.net>
|
;;; Copyright © 2020 Ivan Vilata i Balaguer <ivan@selidor.net>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
|
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
|
||||||
|
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2019,6 +2020,42 @@ can optionally use some appearance settings from XSettings, tint2 and GTK.")
|
||||||
(home-page "https://jgmenu.github.io/")
|
(home-page "https://jgmenu.github.io/")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public xwallpaper
|
||||||
|
(package
|
||||||
|
(name "xwallpaper")
|
||||||
|
(version "0.6.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/stoeckmann/xwallpaper")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"175fzifvia58vah2x7509drvfn3xfv5d9szgh9x1w1a1w8rcs2hx"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("libjpeg-turbo" ,libjpeg-turbo)
|
||||||
|
("libpng" ,libpng)
|
||||||
|
("libxpm" ,libxpm)
|
||||||
|
("pixman" ,pixman)
|
||||||
|
("xcb-util" ,xcb-util)
|
||||||
|
("xcb-util-image" ,xcb-util-image)))
|
||||||
|
(home-page "https://github.com/stoeckmann/xwallpaper")
|
||||||
|
(synopsis "Wallpaper setting utility for X")
|
||||||
|
(description
|
||||||
|
"The xwallpaper utility allows you to set image files as your X
|
||||||
|
wallpaper. JPEG, PNG, and XPM file formats are supported.
|
||||||
|
|
||||||
|
The wallpaper is also advertised to programs which support semi-transparent
|
||||||
|
backgrounds.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public xwrits
|
(define-public xwrits
|
||||||
(package
|
(package
|
||||||
(name "xwrits")
|
(name "xwrits")
|
||||||
|
|
Reference in New Issue