2015-12-20 02:14:45 +00:00
|
|
|
{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase }:
|
2014-07-27 10:50:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "shotcut-${version}";
|
2014-09-13 12:02:41 +00:00
|
|
|
version = "14.09";
|
2014-07-27 10:50:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz";
|
2014-09-13 12:02:41 +00:00
|
|
|
sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f";
|
2014-07-27 10:50:01 +00:00
|
|
|
};
|
|
|
|
|
2015-12-20 02:14:45 +00:00
|
|
|
buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase ];
|
2014-07-27 10:50:01 +00:00
|
|
|
|
|
|
|
configurePhase = "qmake PREFIX=$out";
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/shotcut
|
|
|
|
cp -r src/qml $out/share/shotcut/
|
|
|
|
wrapProgram $out/bin/shotcut --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 10:50:01 +00: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 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;
|
2014-07-27 10:50:01 +00:00
|
|
|
};
|
|
|
|
}
|