Shotcut builds, but wants jack1 libs on start.

This commit is contained in:
Lluís Batlle i Rossell 2016-08-17 17:25:03 +02:00
parent 60c3f3f2b9
commit 5b3c885b35
2 changed files with 8 additions and 6 deletions

View File

@ -1,15 +1,17 @@
{ stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase, qmakeHook }: { stdenv, fetchurl, SDL, frei0r, gettext, makeWrapper, mlt, pkgconfig, qtbase,
qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qmakeHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "shotcut-${version}"; name = "shotcut-${version}";
version = "14.09"; version = "16.08";
src = fetchurl { src = fetchurl {
url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz"; url = "https://github.com/mltframework/shotcut/archive/v${version}.tar.gz";
sha256 = "1504ds3ppqmpg84nb2gb74qndqysjwn3xw7n8xv19kd1pppnr10f"; sha256 = "10f32mfj3f8mjp0yi0jb7wc5d3inycn5c1pvqdagjhyyv3rvx9zy";
}; };
buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase qmakeHook ]; buildInputs = [ SDL frei0r gettext makeWrapper mlt pkgconfig qtbase
qtmultimedia qtwebkit qtx11extras qtwebsockets qmakeHook ];
postInstall = '' postInstall = ''
mkdir -p $out/share/shotcut mkdir -p $out/share/shotcut
@ -35,6 +37,6 @@ stdenv.mkDerivation rec {
# after qt5 bump it probably needs to be updated, # after qt5 bump it probably needs to be updated,
# but newer versions seem to need newer than the latest stable mlt # but newer versions seem to need newer than the latest stable mlt
broken = true; # broken = true;
}; };
} }

View File

@ -14072,7 +14072,7 @@ in
stdenv = stdenv_32bit; stdenv = stdenv_32bit;
}; };
shotcut = qt5.callPackage ../applications/video/shotcut { }; shotcut = qt55.callPackage ../applications/video/shotcut { };
smplayer = qt5.callPackage ../applications/video/smplayer { }; smplayer = qt5.callPackage ../applications/video/smplayer { };