nixpkgs/pkgs/applications/video/shotcut/default.nix

47 lines
1.6 KiB
Nix
Raw Normal View History

2016-08-18 07:40:51 +00:00
{ stdenv, fetchurl, SDL, frei0r, gettext, mlt, jack1, pkgconfig, qtbase,
qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qtquickcontrols,
2016-08-18 07:40:51 +00:00
qtgraphicaleffects,
qmakeHook, makeQtWrapper }:
stdenv.mkDerivation rec {
name = "shotcut-${version}";
2016-11-22 22:17:58 +00:00
version = "16.11";
src = fetchurl {
url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz";
2016-11-22 22:17:58 +00:00
sha256 = "1w02wbk5q7kvqgyip2w94zg4bhdxlh82b4mxarhv0b6v0imy60dq";
};
2016-08-18 07:40:51 +00:00
buildInputs = [ SDL frei0r gettext mlt pkgconfig qtbase qtmultimedia qtwebkit
qtx11extras qtwebsockets qtquickcontrols qtgraphicaleffects qmakeHook makeQtWrapper ];
2016-08-18 07:40:51 +00:00
enableParallelBuilding = true;
postInstall = ''
mkdir -p $out/share/shotcut
cp -r src/qml $out/share/shotcut/
2016-08-22 23:55:12 +00:00
wrapQtProgram $out/bin/shotcut --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ jack1 SDL ]}
'';
meta = with stdenv.lib; {
description = "A free, open source, cross-platform video editor";
longDescription = ''
An official binary for Shotcut, which includes all the
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 14:35:36 +00:00
# after qt5 bump it probably needs to be updated,
# but newer versions seem to need newer than the latest stable mlt
# broken = true;
};
}