diff options
author | Christopher Baines <mail@cbaines.net> | 2021-03-17 19:57:29 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-03-23 21:11:34 +0000 |
commit | aa13529baf498362b5d0c2310d1349692f71a260 (patch) | |
tree | dd4466a7b90e2e570b8917c4df52ea8edfd8492a | |
parent | 042b2eb1ae508f31f6f1b9ccf46deaff95eeb723 (diff) | |
download | guix-aa13529baf498362b5d0c2310d1349692f71a260.tar.gz guix-aa13529baf498362b5d0c2310d1349692f71a260.zip |
gnu: Add snapcast.
* gnu/packages/audio.scm (snapcast): New variable.
-rw-r--r-- | gnu/packages/audio.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 73e8a79606..f1346208a2 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1052,6 +1052,40 @@ performances. The plugins include a cellular automaton synthesizer, an envelope follower, distortion effects, tape effects and more.") (license license:gpl2+))) +(define-public snapcast + (package + (name "snapcast") + (version "0.24.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/badaix/snapcast") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "13yz8alplnqwkcns3mcli01qbyy6l3h62xx0v71ygcrz371l4g9g")))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f)) ; no included tests + (inputs + `(("boost" ,boost) + ("libvorbis" ,libvorbis) + ("soxr" ,soxr) + ("alsa-lib" ,alsa-lib) + ("avahi" ,avahi) + ("pulseaudio" ,pulseaudio) + ("flac" ,flac) + ("opus" ,opus))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://github.com/badaix/snapcast") + (synopsis "Synchronous multiroom audio player") + (description + "Snapcast is a multi-room client-server audio player. Clients are time +synchronized with the server to play synced audio.") + (license license:gpl3+))) + (define-public swh-plugins (package (name "swh-plugins") |