2019-09-24 10:27:49 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, mkDerivation, SDL2, frei0r, gettext, mlt
|
|
|
|
, jack1, pkgconfig, qtbase, qtmultimedia, qtwebkit, qtx11extras, qtwebsockets
|
|
|
|
, qtquickcontrols, qtgraphicaleffects, libmlt, qmake, qttools
|
|
|
|
}:
|
2014-07-27 11:50:01 +01:00
|
|
|
|
2018-05-21 23:10:32 +01:00
|
|
|
assert stdenv.lib.versionAtLeast libmlt.version "6.8.0";
|
|
|
|
assert stdenv.lib.versionAtLeast mlt.version "6.8.0";
|
|
|
|
|
2019-09-24 10:27:49 +01:00
|
|
|
let
|
|
|
|
# https://github.com/mltframework/shotcut/issues/771
|
|
|
|
fixVaapiRendering1 = fetchpatch {
|
|
|
|
url = "https://github.com/peti/shotcut/commit/038f6839298fc1e9e80ddf84fe168a78118bc625.patch";
|
|
|
|
sha256 = "153z1g6criszd6gdkw4f5zk0gmh0jar6l2g8fzwjhhcvkdz30vbp";
|
|
|
|
};
|
|
|
|
fixVaapiRendering2 = fetchpatch {
|
|
|
|
url = "https://github.com/peti/shotcut/commit/653c485f92d2847fdac517e3f797c9254826ffab.patch";
|
|
|
|
sha256 = "1qd0zgyahda72xh3avlg7lg0jq94wq5847154qlrgzj8b4n7vizw";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-08-02 12:26:16 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "shotcut";
|
2019-09-16 15:59:19 +01:00
|
|
|
version = "19.09.14";
|
2014-07-27 11:50:01 +01:00
|
|
|
|
2017-09-26 23:50:42 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mltframework";
|
|
|
|
repo = "shotcut";
|
|
|
|
rev = "v${version}";
|
2019-09-16 15:59:19 +01:00
|
|
|
sha256 = "1cl8ba1n0h450r4n5mfqmyjaxvczs3m19blwxslqskvmxy5my3cn";
|
2014-07-27 11:50:01 +01:00
|
|
|
};
|
|
|
|
|
2019-09-24 10:27:49 +01:00
|
|
|
patches = [ fixVaapiRendering1 fixVaapiRendering2 ];
|
|
|
|
|
2016-08-18 08:40:51 +01:00
|
|
|
enableParallelBuilding = true;
|
2019-08-02 12:26:16 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2017-06-02 16:40:19 +01:00
|
|
|
buildInputs = [
|
2017-09-26 23:50:42 +01:00
|
|
|
SDL2 frei0r gettext mlt libmlt
|
2017-06-02 16:40:19 +01:00
|
|
|
qtbase qtmultimedia qtwebkit qtx11extras qtwebsockets qtquickcontrols
|
|
|
|
qtgraphicaleffects
|
|
|
|
];
|
2014-07-27 11:50:01 +01:00
|
|
|
|
2017-09-26 23:50:42 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt";
|
2018-08-05 17:19:42 +01:00
|
|
|
qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" "SHOTCUT_VERSION=${version}" ];
|
2017-09-26 23:50:42 +01:00
|
|
|
|
2017-01-09 20:16:30 +00:00
|
|
|
prePatch = ''
|
|
|
|
sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp
|
|
|
|
sed 's_shotcutPath, "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/jobs/ffmpegjob.cpp
|
2019-09-16 17:48:39 +01:00
|
|
|
sed 's_qApp->applicationDirPath(), "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/docks/encodedock.cpp
|
2017-01-09 20:16:30 +00:00
|
|
|
NICE=$(type -P nice)
|
|
|
|
sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp
|
|
|
|
'';
|
|
|
|
|
2019-08-02 12:26:16 +01:00
|
|
|
qtWrapperArgs = [
|
|
|
|
"--prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1"
|
2019-09-16 15:59:19 +01:00
|
|
|
"--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [jack1 SDL2]}"
|
2019-08-02 12:26:16 +01:00
|
|
|
"--prefix PATH : ${mlt}/bin"
|
|
|
|
];
|
|
|
|
|
2014-07-27 11:50:01 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/shotcut
|
|
|
|
cp -r src/qml $out/share/shotcut/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A free, open source, cross-platform video editor";
|
|
|
|
longDescription = ''
|
2014-12-30 02:31:03 +00:00
|
|
|
An official binary for Shotcut, which includes all the
|
2014-07-27 11:50:01 +01:00
|
|
|
dependencies pinned to specific versions, is provided on
|
|
|
|
http://shotcut.org.
|
|
|
|
|
|
|
|
If you encounter problems with this version, please contact the
|
|
|
|
nixpkgs maintainer(s). If you wish to report any bugs upstream,
|
|
|
|
please use the official build from shotcut.org instead.
|
|
|
|
'';
|
2017-08-03 20:42:37 +01:00
|
|
|
homepage = https://shotcut.org;
|
2014-07-27 11:50:01 +01:00
|
|
|
license = licenses.gpl3;
|
2018-04-26 20:42:22 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu woffs ];
|
2014-07-27 11:50:01 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|