aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/pick-random-wallpaper.scm
blob: 7f4a706c86451dc3abfe572cd1bb461c01bcf5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(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
  (let ((commit "6ab43c64aa34c6a13705435f7825d183a59544d8")
        (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
          (base32 "1vkns0a46adaxx0qrw1iq3af1zmc3wy7gmsid0v8893a2688842d"))
         (file-name (git-file-name name version))))
      (propagated-inputs
       (list findutils bash herbstluftwm xwininfo coreutils feh))
      (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+))))