summary refs log tree commit diff
path: root/nixos/tests/snapcast.nix
Commit message (Collapse)AuthorAge
* nixos/snapserver: use the correct bind address argumentsAndreas Rammhold2021-12-16
| | | | | | | | | | | | | | Snapserver expects the arguments `--tcp.bind_to_address` and `--http.bind_to_address` instead of the `--tcp.address` (and http equivalent) versions. This caused the process to listen on `0.0.0.0` (for TCP and HTTP sockets) regardless of the configuration value. It also never listend on the IPv6 address `::` as our module system made the user believe. This commit fixes the above issue and ensures that (at least for the TCP socket) that our default `::` does indeed allow connections via IPv6 (to localhost aka ::1).
* nixos/tests/snapcast: minor polish to make the tests more expressiveMartin Weinelt2021-06-03
|
* nixos/snapserver: add support for meta stream type introduced in 0.23.0Alexandre Macabies2021-03-25
|
* tests/snapserver: Add test of connection and buffer size settingJan Beinke2021-02-07
| | | | | This addition will cover part of the issue, that was fixed in #112295 and @mweinelt asked to improve the tests.
* nixos/snapserver: update available stream types for v0.21.0Alexandre Macabies2021-02-05
| | | | | | | * Add 'librespot' (new name for 'spotify'), 'alsa', 'tcp'. * Add a warning about the spotify -> librespot rename. * Fix the deprecated example `mode = "listen"` for type 'pipe'. * Update the tests to include a straightforward 'tcp' test.
* treewide: simplify pkgs.stdenv.lib -> pkgs.libDominik Xaver Hörl2021-01-10
| | | | | The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
* nixos/tests: add snapcastMartin Weinelt2020-08-02
Checks - if all configured ports are listened on - if all pipes for multiple streams get set up - if rpc interaction is possible