Skip to content

Commit 8949c5d

Browse files
Merge pull request #278810 from r-ryantm/auto-update/squeezelite
squeezelite: 1.9.9.1449 -> 1.9.9.1463
2 parents 87c92c0 + a72a7ad commit 8949c5d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

nixos/tests/slimserver.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
'';

pkgs/applications/audio/squeezelite/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 ]

0 commit comments

Comments
 (0)