Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/by-name/mu/music-assistant/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
python3,
fetchFromGitHub,
ffmpeg-headless,
ffmpeg_7-headless,
nixosTests,
replaceVars,
providers ? [ ],
Expand Down Expand Up @@ -47,20 +47,20 @@ assert

python.pkgs.buildPythonApplication rec {
pname = "music-assistant";
version = "2.6.2";
version = "2.6.3";
pyproject = true;

src = fetchFromGitHub {
owner = "music-assistant";
repo = "server";
tag = version;
hash = "sha256-mNSTXMQDG5LiP3Bv9GGy2AO1bQfpFLH8tSCOB/wAzOU=";
hash = "sha256-vvhynBor5tj5n53Dm3K4ZOkFZ5LM7bFevOCdZjJsbbM=";
};

patches = [
(replaceVars ./ffmpeg.patch {
ffmpeg = "${lib.getBin ffmpeg-headless}/bin/ffmpeg";
ffprobe = "${lib.getBin ffmpeg-headless}/bin/ffprobe";
ffmpeg = "${lib.getBin ffmpeg_7-headless}/bin/ffmpeg";
ffprobe = "${lib.getBin ffmpeg_7-headless}/bin/ffprobe";
})

# Look up librespot from PATH at runtime
Expand Down
4 changes: 2 additions & 2 deletions pkgs/by-name/mu/music-assistant/providers.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Do not edit manually, run ./update-providers.py

{
version = "2.6.2";
version = "2.6.3";
providers = {
airplay = ps: [
];
Expand Down Expand Up @@ -150,6 +150,6 @@
duration-parser
yt-dlp
ytmusicapi
];
]; # missing deno
Copy link
Member

@mweinelt mweinelt Nov 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚨 🚨 🚨

alerta, alerta, fck yt.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this https://pypi.org/project/deno/ ? 😅

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just a convenicene wrapper for people installing yt-dlp from pypi. Nothing we have to do in nixpkgs, because we wrap it into yt-dlp ourselves.

};
}
Loading