aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/mpd-notify.scm
blob: 44b4d25335b23076cdd13babfc03f56fcffae1c0 (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
(define-module (oni packages mpd-notify)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages base)
  #:use-module (gnu packages shells)
  #:use-module (gnu packages mpd)
  #:use-module (gnu packages gnome)
  #:use-module (guix build-system gnu)
  #:use-module (guix git-download)
  #:use-module (guix packages))

(define-public mpd-notify
  (let ((commit "1bf3786878eb499b6a0c56e47ba3f3e07cd81182")
        (revision "0"))
    (package
      (name "mpd-notify")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (uri (git-reference
               (url "git://code.ryuslash.org/util/tom/mpd-notify.git")
               (commit commit)))
         (method git-fetch)
         (sha256
          (base32 "1i72h3mxsifymnmpmrgfqhgrbq9sjhgn1b9d64f164m1m0g0smq3"))
         (file-name (git-file-name name version))))
      (propagated-inputs
       (list mpd-mpc zsh libnotify))
      (build-system gnu-build-system)
      (arguments
       `(#:tests? #f
         #: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 "mpd-notify" bin)))))))
      (home-page "https://ryuslash.org/")
      (synopsis "A simple script that notifies you of MPD player state changes.")
      (description "Uses `mpc idleloop' to listen to player state changes and sends notifications.")
      (license license:gpl3+))))