nixpkgs/pkgs/development/libraries/mlt/default.nix
R. RyanTM 28c1c0ab26 mlt: 6.6.0 -> 6.8.0 (#40653)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mlt/versions.

These checks were done:

- built on NixOS
- /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0/bin/melt passed the binary check.
- /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0/bin/.melt-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 6.8.0 with grep in /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0
- directory tree listing: https://gist.github.com/3a7f7c995e0d2d7232ab28093ddd4613
- du listing: https://gist.github.com/c8e940fb79b09b1aeee2243a1fff57ca
2018-05-19 17:17:18 +02:00

50 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, fetchurl, makeWrapper
, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate
, libvorbis, libxml2, movit, pkgconfig, sox
, gtk2
}:
stdenv.mkDerivation rec {
name = "mlt-${version}";
version = "6.8.0";
src = fetchFromGitHub {
owner = "mltframework";
repo = "mlt";
rev = "v${version}";
sha256 = "0hmxlz3i9yasw5jdkrczak8shzlnpi1acaahn50lvgg9b14kg7b8";
};
buildInputs = [
SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2
makeWrapper movit pkgconfig sox
gtk2
];
# 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
# Remove an unnecessary reference to movit.dev.
s=${movit.dev}/include
t=$(for ((i = 0; i < ''${#s}; i++)); do echo -n X; done)
sed -i $out/lib/mlt/libmltopengl.so -e "s|$s|$t|g"
'';
meta = with stdenv.lib; {
description = "Open source multimedia framework, designed for television broadcasting";
homepage = https://www.mltframework.org;
license = licenses.gpl3;
maintainers = [ maintainers.tohl ];
platforms = platforms.linux;
};
}