nixpkgs/pkgs/development/libraries/mlt/qt-5.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

91 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
2021-08-13 11:47:07 +01:00
, cmake
, SDL
, ffmpeg
, frei0r
, libjack2
, libdv
, libsamplerate
, libvorbis
, libxml2
, movit
, pkg-config
, sox
, qtbase
, qtsvg
, fftw
, vid-stab
, opencv3
, ladspa-sdk
, gitUpdater
, ladspaPlugins
, mkDerivation
, which
2015-05-07 14:40:37 +01:00
}:
2021-08-14 23:48:03 +01:00
mkDerivation rec {
pname = "mlt";
2021-08-13 11:47:07 +01:00
version = "7.0.1";
2015-05-07 14:40:37 +01:00
src = fetchFromGitHub {
owner = "mltframework";
repo = "mlt";
rev = "v${version}";
2021-08-13 11:47:07 +01:00
sha256 = "13c5miph9jjbz69dhy0zvbkk5zbb05dr3vraaci0d5fdbrlhyscf";
2015-05-07 14:40:37 +01:00
};
buildInputs = [
SDL
ffmpeg
frei0r
libjack2
libdv
libsamplerate
libvorbis
libxml2
movit
pkg-config
qtbase
qtsvg
sox
fftw
vid-stab
opencv3
2016-11-22 22:17:58 +00:00
ladspa-sdk
ladspaPlugins
2015-05-07 14:40:37 +01:00
];
2021-08-13 11:47:07 +01:00
nativeBuildInputs = [ cmake which ];
outputs = [ "out" "dev" ];
2022-07-17 15:42:15 +01:00
cmakeFlags = [
# RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/
"-DCMAKE_SKIP_BUILD_RPATH=ON"
];
qtWrapperArgs = [
"--prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1"
"--prefix LADSPA_PATH : ${ladspaPlugins}/lib/ladspa"
];
passthru = {
inherit ffmpeg;
};
passthru.updateScript = gitUpdater {
inherit pname version;
attrPath = "libsForQt5.mlt";
rev-prefix = "v";
};
meta = with lib; {
2015-05-07 14:40:37 +01:00
description = "Open source multimedia framework, designed for television broadcasting";
homepage = "https://www.mltframework.org/";
2015-05-07 14:40:37 +01:00
license = licenses.gpl3;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}