Skip to content

Commit 53e2564

Browse files
authoredMar 20, 2025
dash-mpd-cli: 0.2.24 → 0.2.25 (#390456)
2 parents 643ddc5 + 2fdfdbf commit 53e2564

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎pkgs/by-name/da/dash-mpd-cli/package.nix

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ let
2222
'';
2323
};
2424
in
25-
rustPlatform.buildRustPackage rec {
25+
rustPlatform.buildRustPackage (finalAttrs: {
2626
pname = "dash-mpd-cli";
27-
version = "0.2.24";
27+
version = "0.2.25";
2828

2929
src = fetchFromGitHub {
3030
owner = "emarsden";
3131
repo = "dash-mpd-cli";
32-
tag = "v${version}";
33-
hash = "sha256-Q4zzKdp8GROL8vHi8XETErqufSqgZH/zf/mqEH2lIzE=";
32+
tag = "v${finalAttrs.version}";
33+
hash = "sha256-xC/U48QyVn9K8Do1909XS7j9aY+ia0gd5cMdfipIds4=";
3434
};
3535

3636
patches = [
3737
./use-shaka-by-default.patch
3838
];
3939

4040
useFetchCargoVendor = true;
41-
cargoHash = "sha256-yXLA/JVD/4jbeVWOhs74Rdlc/drFFjQ52x5IMwUg4jY=";
41+
cargoHash = "sha256-QHfon0795XNtG3jCVv56EIA1pPToWUiopKWI3cA7Vg0=";
4242

4343
nativeBuildInputs = [
4444
makeWrapper
@@ -52,8 +52,8 @@ rustPlatform.buildRustPackage rec {
5252
wrapProgram $out/bin/dash-mpd-cli \
5353
--prefix PATH : ${
5454
lib.makeBinPath [
55-
ffmpeg.bin
56-
libxslt.bin
55+
(lib.getBin ffmpeg)
56+
(lib.getBin libxslt)
5757
shaka-packager-wrapped
5858
]
5959
}
@@ -73,4 +73,4 @@ rustPlatform.buildRustPackage rec {
7373
maintainers = with lib.maintainers; [ al3xtjames ];
7474
mainProgram = "dash-mpd-cli";
7575
};
76-
}
76+
})

0 commit comments

Comments
 (0)
Failed to load comments.