mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
mlt-qt5: fix build with Qt 5.4
This commit is contained in:
parent
1b982918f5
commit
55a2edb893
39
pkgs/development/libraries/mlt/qt5.nix
Normal file
39
pkgs/development/libraries/mlt/qt5.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchurl, SDL, ffmpeg, frei0r, jack2, libdv, libsamplerate
|
||||
, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt5, sox
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mlt-${version}";
|
||||
version = "0.9.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz";
|
||||
sha256 = "0s8ypg0q50zfcmq527y8cbdvzxhiqidm1923k28ar8jqmjp45ssh";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
SDL ffmpeg frei0r jack2 libdv libsamplerate libvorbis libxml2
|
||||
makeWrapper movit pkgconfig qt5.base qt5.svg sox
|
||||
];
|
||||
|
||||
# Mostly taken from:
|
||||
# http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine
|
||||
configureFlags = [
|
||||
"--avformat-swscale" "--enable-gpl" "--enable-gpl" "--enable-gpl3"
|
||||
"--enable-opengl"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Open source multimedia framework, designed for television broadcasting";
|
||||
homepage = http://www.mltframework.org/;
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -7190,9 +7190,7 @@ let
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
mlt-qt5 = callPackage ../development/libraries/mlt {
|
||||
qt = qt5;
|
||||
};
|
||||
mlt-qt5 = callPackage ../development/libraries/mlt/qt5.nix { };
|
||||
|
||||
movit = callPackage ../development/libraries/movit { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user