2022-05-21 20:08:01 +02:00
|
|
|
(define-module (oni packages pick-random-wallpaper)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages bash)
|
|
|
|
#:use-module (gnu packages wm)
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (gnu packages image-viewers))
|
|
|
|
|
|
|
|
(define-public pick-random-wallpaper
|
2022-05-31 08:09:12 +02:00
|
|
|
(let ((commit "6ab43c64aa34c6a13705435f7825d183a59544d8")
|
2022-05-21 20:08:01 +02:00
|
|
|
(revision "0"))
|
|
|
|
(package
|
|
|
|
(name "pick-random-wallpaper")
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(uri (git-reference
|
|
|
|
(url "git://ryuslash.org/util/tom/pick-random-wallpaper.git")
|
|
|
|
(commit commit)))
|
|
|
|
(method git-fetch)
|
|
|
|
(sha256
|
2022-05-31 08:09:12 +02:00
|
|
|
(base32 "1vkns0a46adaxx0qrw1iq3af1zmc3wy7gmsid0v8893a2688842d"))
|
2022-05-21 20:08:01 +02:00
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
(propagated-inputs
|
2022-05-31 08:09:12 +02:00
|
|
|
(list findutils bash herbstluftwm xwininfo coreutils feh))
|
2022-05-21 20:08:01 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; There is no test suite.
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(delete 'build)
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
|
|
|
(install-file "pick-random-wallpaper" bin)))))))
|
|
|
|
(home-page "https://ryuslash.org/")
|
|
|
|
(synopsis "A simple script that sets a random wallpaper using feh.")
|
|
|
|
(description "Sets a random wallpaper using feh and stores which wallpaper was added in a herbstluftwm attribute.")
|
|
|
|
(license license:gpl3+))))
|