Skip to content

Commit 908bfbb

Browse files
authored
tplay: 0.6.0 -> 0.6.3 (#420683)
2 parents 3c41f8c + 382ae5c commit 908bfbb

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

pkgs/by-name/tp/tplay/package.nix

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
fetchFromGitHub,
55
pkg-config,
66
clang,
7-
ffmpeg,
7+
ffmpeg-headless,
88
openssl,
99
alsa-lib,
1010
opencv,
1111
makeWrapper,
1212
}:
1313
rustPlatform.buildRustPackage rec {
1414
pname = "tplay";
15-
version = "0.6.0";
15+
version = "0.6.3";
1616

1717
src = fetchFromGitHub {
1818
owner = "maxcurzi";
1919
repo = "tplay";
2020
rev = "v${version}";
21-
hash = "sha256-SRn7kg5FdSimKMFowKNUIan+MrojtNO0apeehIRTzfw=";
21+
hash = "sha256-JVkezG2bs99IFOTONeZZRljjbi0EhFf+DMxcfiWI4p4=";
2222
};
2323

2424
useFetchCargoVendor = true;
25-
cargoHash = "sha256-SzOx9IPp+TjiJpAEX8+GhZ+UEEmqNpI67S40OiYrHfM=";
25+
cargoHash = "sha256-LHRTmjAwDPMOP6YQfL01leEzqRKtteU1cnUqL6UeWKk=";
2626
checkFlags = [
2727
# requires network access
2828
"--skip=pipeline::image_pipeline::tests::test_process"
@@ -35,20 +35,19 @@ rustPlatform.buildRustPackage rec {
3535
rustPlatform.bindgenHook
3636
pkg-config
3737
clang
38-
ffmpeg
3938
makeWrapper
4039
];
4140

4241
buildInputs = [
4342
openssl.dev
4443
alsa-lib.dev
45-
ffmpeg.dev
44+
ffmpeg-headless.dev
4645
opencv
4746
];
4847

4948
postFixup = ''
5049
wrapProgram $out/bin/tplay \
51-
--prefix PATH : "${lib.makeBinPath [ ffmpeg ]}"
50+
--prefix PATH : "${lib.makeBinPath [ ffmpeg-headless ]}"
5251
'';
5352

5453
meta = {

0 commit comments

Comments
 (0)