shotcut: 21.03.21 -> 21.09.20

Fixes build with new mlt++ library changes.

Co-Authored-By: "Frank Doepper" <github@woffs.de>

+3 -3
+3 -3
pkgs/applications/video/shotcut/default.nix
··· 25 25 26 26 mkDerivation rec { 27 27 pname = "shotcut"; 28 - version = "21.03.21"; 28 + version = "21.09.20"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "mltframework"; 32 32 repo = "shotcut"; 33 33 rev = "v${version}"; 34 - sha256 = "UdeHbNkJ0U9FeTmpbcU4JxiyIHkrlC8ErhtY6zdCZEk="; 34 + sha256 = "1y46n5gmlayfl46l0vhg5g5dbbc0sg909mxb68sia0clkaas8xrh"; 35 35 }; 36 36 37 37 nativeBuildInputs = [ pkg-config qmake ]; ··· 57 57 ]; 58 58 59 59 prePatch = '' 60 - sed 's_shotcutPath, "melt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp 60 + sed 's_shotcutPath, "melt[^"]*"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp 61 61 sed 's_shotcutPath, "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/jobs/ffmpegjob.cpp 62 62 sed 's_qApp->applicationDirPath(), "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/docks/encodedock.cpp 63 63 NICE=$(type -P nice)