mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchurl, SDL, frei0r, jack2, libav, libdv, libsamplerate
|
|
, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt, sox
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mlt-${version}";
|
|
version = "0.9.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz";
|
|
sha256 = "0vk1i2yrny6dbip4aha25ibgv4m2rdhpxmz6a74q9wz1cgzbb766";
|
|
};
|
|
|
|
buildInputs = [
|
|
SDL frei0r jack2 libav libdv libsamplerate libvorbis libxml2
|
|
makeWrapper movit pkgconfig qt 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;
|
|
};
|
|
}
|