Move all mpd-related packages into (oni packages mpd)
This commit is contained in:
parent
730d18c024
commit
744b191483
4 changed files with 39 additions and 47 deletions
|
@ -199,7 +199,7 @@
|
||||||
emacs-oni-php))
|
emacs-oni-php))
|
||||||
#:use-module ((oni packages inbox-size)
|
#:use-module ((oni packages inbox-size)
|
||||||
#:select (inbox-size))
|
#:select (inbox-size))
|
||||||
#:use-module ((oni packages mpd-random-albums)
|
#:use-module ((oni packages mpd)
|
||||||
#:select (mpd-random-albums))
|
#:select (mpd-random-albums))
|
||||||
#:use-module ((oni packages notmuch-collect-tasks)
|
#:use-module ((oni packages notmuch-collect-tasks)
|
||||||
#:select (notmuch-collect-tasks))
|
#:select (notmuch-collect-tasks))
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:use-module (oop goops)
|
#:use-module (oop goops)
|
||||||
#:use-module (ice-9 string-fun)
|
#:use-module (ice-9 string-fun)
|
||||||
#:use-module ((oni packages mpd-notify)
|
#:use-module ((oni packages mpd)
|
||||||
#:select (mpd-notify))
|
#:select (mpd-notify))
|
||||||
|
|
||||||
#:export (home-mpd-service-type
|
#:export (home-mpd-service-type
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
(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+))))
|
|
|
@ -1,12 +1,46 @@
|
||||||
(define-module (oni packages mpd-random-albums)
|
(define-module (oni packages mpd)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
#:use-module (gnu packages shells)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages mpd)
|
#:use-module (gnu packages mpd)
|
||||||
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages))
|
||||||
#:use-module (oni packages scsh))
|
|
||||||
|
(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+))))
|
||||||
|
|
||||||
(define-public mpd-random-albums
|
(define-public mpd-random-albums
|
||||||
(let ((commit "c12a766e1920e726129dfd1161a2ef15471f89e8")
|
(let ((commit "c12a766e1920e726129dfd1161a2ef15471f89e8")
|
Loading…
Reference in a new issue