2016-08-18 09:40:51 +02:00
|
|
|
{ stdenv, fetchurl, SDL, frei0r, gettext, mlt, jack1, pkgconfig, qtbase,
|
2016-08-18 10:21:53 +02:00
|
|
|
qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qtquickcontrols,
|
2016-08-18 09:40:51 +02:00
|
|
|
qtgraphicaleffects,
|
|
|
|
qmakeHook, makeQtWrapper }:
|
2014-07-27 12:50:01 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "shotcut-${version}";
|
2016-11-22 23:17:58 +01:00
|
|
|
version = "16.11";
|
2014-07-27 12:50:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz";
|
2016-11-22 23:17:58 +01:00
|
|
|
sha256 = "1w02wbk5q7kvqgyip2w94zg4bhdxlh82b4mxarhv0b6v0imy60dq";
|
2014-07-27 12:50:01 +02:00
|
|
|
};
|
|
|
|
|
2016-08-18 09:40:51 +02:00
|
|
|
buildInputs = [ SDL frei0r gettext mlt pkgconfig qtbase qtmultimedia qtwebkit
|
2016-08-18 10:21:53 +02:00
|
|
|
qtx11extras qtwebsockets qtquickcontrols qtgraphicaleffects qmakeHook makeQtWrapper ];
|
2016-08-18 09:40:51 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-07-27 12:50:01 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/shotcut
|
|
|
|
cp -r src/qml $out/share/shotcut/
|
2016-08-23 01:55:12 +02:00
|
|
|
wrapQtProgram $out/bin/shotcut --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ jack1 SDL ]}
|
2014-07-27 12:50:01 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://shotcut.org;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
2014-12-10 15:35:36 +01:00
|
|
|
|
|
|
|
# after qt5 bump it probably needs to be updated,
|
|
|
|
# but newer versions seem to need newer than the latest stable mlt
|
2016-08-17 17:25:03 +02:00
|
|
|
# broken = true;
|
2014-07-27 12:50:01 +02:00
|
|
|
};
|
|
|
|
}
|