File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
pkgs/applications/audio/squeezelite Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ import ./make-test-python.nix ({ pkgs, ...} : {
3939
4040 with subtest("squeezelite player successfully connects to slimserver"):
4141 machine.wait_for_unit("squeezelite.service")
42- machine.wait_until_succeeds("journalctl -u squeezelite.service | grep 'slimproto:937 connected'")
43- player_mac = machine.wait_until_succeeds("journalctl -eu squeezelite.service | grep 'sendHELO:148 mac:'").strip().split(" ")[-1]
42+ machine.wait_until_succeeds("journalctl -u squeezelite.service | grep -E 'slimproto:[0-9]+ connected'")
43+ player_mac = machine.wait_until_succeeds("journalctl -eu squeezelite.service | grep -E 'sendHELO:[0-9]+ mac:'").strip().split(" ")[-1]
4444 player_id = machine.succeed(f"curl http://localhost:9000/jsonrpc.js -g -X POST -d '{json.dumps(rpc_get_player)}'")
4545 assert player_mac == json.loads(player_id)["result"]["_id"], "squeezelite player not found"
4646 '' ;
Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ stdenv.mkDerivation {
4444 pname = binName ;
4545 # versions are specified in `squeezelite.h`
4646 # see https://github.com/ralph-irving/squeezelite/issues/29
47- version = "1.9.9.1449 " ;
47+ version = "1.9.9.1463 " ;
4848
4949 src = fetchFromGitHub {
5050 owner = "ralph-irving" ;
5151 repo = "squeezelite" ;
52- rev = "8581aba8b1b67af272b89b62a7a9b56082307ab6 " ;
53- hash = "sha256-/qyoc0/7Q8yiu5AhuLQFUiE88wf+/ejHjSucjpoN5bI =" ;
52+ rev = "c2534dc4139f3635ff7aed49b90ff03c43723dd9 " ;
53+ hash = "sha256-MTGeF62jb7auOtUDougWZz7VJUNCBD/QL9jfDB7UmQE =" ;
5454 } ;
5555
5656 buildInputs = [ flac libmad libvorbis mpg123 ]
You can’t perform that action at this time.
0 commit comments