mpd: use finalAttrs

This commit is contained in:
Doron Behar
2025-08-05 13:25:58 +03:00
parent 922df659e1
commit 701d16472f
+3 -3
View File
@@ -198,14 +198,14 @@ let
features;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "mpd";
version = "0.24.5";
src = fetchFromGitHub {
owner = "MusicPlayerDaemon";
repo = "MPD";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "sha256-MgepOQeOl+n65+7b8zXe2u0fCHFAviSqL1aNu2iSXiM=";
};
@@ -289,7 +289,7 @@ let
files while being controlled by its network protocol.
'';
};
};
});
in
{
mpd = run { };