mirror of
https://github.com/SqrtMinusOne/channel-q.git
synced 2025-12-10 11:43:03 +03:00
feat(mpd-watcher): add
This commit is contained in:
parent
fb203d166b
commit
b97eee4088
1 changed files with 30 additions and 0 deletions
30
mpd-watcher.scm
Normal file
30
mpd-watcher.scm
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
(define-module (mpd-watcher)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (gnu packages mpd))
|
||||
|
||||
(define-public mpd-watcher
|
||||
(package
|
||||
(name "mpd-watcher")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/SqrtMinusOne/mpd-watcher")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0g5vxnyjaj95kiq6m04bq9qmn186xsjbzbzq0slghmnwc3mznb67"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f
|
||||
))
|
||||
(native-inputs
|
||||
`(("python-mpd2" ,python-mpd2)))
|
||||
(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.")
|
||||
(license license:expat)))
|
||||
Loading…
Add table
Reference in a new issue