2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2020-09-27 21:21:55 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, mkDerivation
|
|
|
|
, SDL2
|
|
|
|
, frei0r
|
2020-11-26 12:29:09 +01:00
|
|
|
, ladspaPlugins
|
2020-09-27 21:21:55 +02:00
|
|
|
, gettext
|
|
|
|
, mlt
|
|
|
|
, jack1
|
2021-01-17 03:09:27 +01:00
|
|
|
, pkg-config
|
2020-09-27 21:21:55 +02:00
|
|
|
, qtbase
|
|
|
|
, qtmultimedia
|
|
|
|
, qtx11extras
|
|
|
|
, qtwebsockets
|
|
|
|
, qtquickcontrols2
|
|
|
|
, qtgraphicaleffects
|
|
|
|
, qmake
|
|
|
|
, qttools
|
2022-02-21 02:11:49 +01:00
|
|
|
, gitUpdater
|
2019-09-24 11:27:49 +02:00
|
|
|
}:
|
2014-07-27 12:50:01 +02:00
|
|
|
|
2021-02-04 21:27:35 +01:00
|
|
|
assert lib.versionAtLeast mlt.version "6.24.0";
|
2019-09-24 11:27:49 +02:00
|
|
|
|
2019-08-02 13:26:16 +02:00
|
|
|
mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "shotcut";
|
2021-09-15 16:57:28 +02:00
|
|
|
version = "21.09.20";
|
2014-07-27 12:50:01 +02:00
|
|
|
|
2017-09-27 00:50:42 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mltframework";
|
|
|
|
repo = "shotcut";
|
|
|
|
rev = "v${version}";
|
2021-09-15 16:57:28 +02:00
|
|
|
sha256 = "1y46n5gmlayfl46l0vhg5g5dbbc0sg909mxb68sia0clkaas8xrh";
|
2014-07-27 12:50:01 +02:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ pkg-config qmake ];
|
2017-06-02 17:40:19 +02:00
|
|
|
buildInputs = [
|
2020-09-27 21:21:55 +02:00
|
|
|
SDL2
|
|
|
|
frei0r
|
2020-11-26 12:29:09 +01:00
|
|
|
ladspaPlugins
|
2020-09-27 21:21:55 +02:00
|
|
|
gettext
|
|
|
|
mlt
|
|
|
|
qtbase
|
|
|
|
qtmultimedia
|
|
|
|
qtx11extras
|
|
|
|
qtwebsockets
|
|
|
|
qtquickcontrols2
|
2017-06-02 17:40:19 +02:00
|
|
|
qtgraphicaleffects
|
|
|
|
];
|
2014-07-27 12:50:01 +02:00
|
|
|
|
2020-11-26 12:29:09 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${mlt.dev}/include/mlt++ -I${mlt.dev}/include/mlt";
|
2020-09-27 21:21:55 +02:00
|
|
|
qmakeFlags = [
|
2021-01-15 06:42:41 +01:00
|
|
|
"QMAKE_LRELEASE=${lib.getDev qttools}/bin/lrelease"
|
2020-09-27 21:21:55 +02:00
|
|
|
"SHOTCUT_VERSION=${version}"
|
|
|
|
"DEFINES+=SHOTCUT_NOUPGRADE"
|
|
|
|
];
|
2017-09-27 00:50:42 +02:00
|
|
|
|
2017-01-09 21:16:30 +01:00
|
|
|
prePatch = ''
|
2021-09-15 16:57:28 +02:00
|
|
|
sed 's_shotcutPath, "melt[^"]*"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp
|
2017-01-09 21:16:30 +01:00
|
|
|
sed 's_shotcutPath, "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/jobs/ffmpegjob.cpp
|
2019-09-16 18:48:39 +02:00
|
|
|
sed 's_qApp->applicationDirPath(), "ffmpeg"_"${mlt.ffmpeg}/bin/ffmpeg"_' -i src/docks/encodedock.cpp
|
2017-01-09 21:16:30 +01:00
|
|
|
NICE=$(type -P nice)
|
|
|
|
sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp
|
|
|
|
'';
|
|
|
|
|
2019-08-02 13:26:16 +02:00
|
|
|
qtWrapperArgs = [
|
|
|
|
"--prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1"
|
2020-11-26 12:29:09 +01:00
|
|
|
"--prefix LADSPA_PATH : ${ladspaPlugins}/lib/ladspa"
|
2021-01-15 06:42:41 +01:00
|
|
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ jack1 SDL2 ]}"
|
2019-08-02 13:26:16 +02:00
|
|
|
"--prefix PATH : ${mlt}/bin"
|
2020-09-27 21:21:55 +02:00
|
|
|
];
|
2019-08-02 13:26:16 +02:00
|
|
|
|
2014-07-27 12:50:01 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/shotcut
|
|
|
|
cp -r src/qml $out/share/shotcut/
|
|
|
|
'';
|
|
|
|
|
2022-02-21 02:11:49 +01:00
|
|
|
passthru.updateScript = gitUpdater {
|
2020-09-25 18:21:22 +02:00
|
|
|
inherit pname version;
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-07-27 12:50:01 +02:00
|
|
|
description = "A free, open source, cross-platform video editor";
|
|
|
|
longDescription = ''
|
2014-12-30 03:31:03 +01:00
|
|
|
An official binary for Shotcut, which includes all the
|
2014-07-27 12:50:01 +02: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.
|
|
|
|
'';
|
2020-04-07 19:48:38 +02:00
|
|
|
homepage = "https://shotcut.org";
|
2021-09-15 16:59:19 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2020-01-05 14:13:47 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu woffs peti ];
|
2014-07-27 12:50:01 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|