mirror of
https://github.com/SqrtMinusOne/channel-q.git
synced 2025-12-10 11:43:03 +03:00
feat(mpd-watcher): update
This commit is contained in:
parent
0899ea86a0
commit
f727a64939
1 changed files with 5 additions and 3 deletions
|
|
@ -3,12 +3,13 @@
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (gnu packages python-xyz)
|
||||
#:use-module (gnu packages mpd))
|
||||
|
||||
(define-public mpd-watcher
|
||||
(package
|
||||
(name "mpd-watcher")
|
||||
(version "1.0.0")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
|
@ -17,13 +18,14 @@
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0g5vxnyjaj95kiq6m04bq9qmn186xsjbzbzq0slghmnwc3mznb67"))))
|
||||
(base32 "0vralrhzzld3b1mdw92ic0yw64nafkiks9qvjh9sgp2ff9f66lxp"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f
|
||||
))
|
||||
(native-inputs
|
||||
`(("python-mpd2" ,python-mpd2)))
|
||||
`(("python-mpd2" ,python-mpd2)
|
||||
("dynaconf" ,dynaconf)))
|
||||
(home-page "https://github.com/SqrtMinusOne/mpd-watcher/")
|
||||
(synopsis "A simple Python script to log mpd (https://www.musicpd.org/) activity in csv format.")
|
||||
(description "A simple Python script to log mpd (https://www.musicpd.org/) activity in csv format.")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue