33f345eed0
Built and tested locally. From the changelog: ``` Version 0.7.84, 2016-03-31 x #I122, MPEG-4/MOV: Crash if mdhd timescale is 0 x MPEG-4/MOV: Infinite loop if malformed stsc / stsz (detected by fuzzing) x MPEG-TS: some DVB Subtitles were not detected x HLS: better handling of media playlists having EXT-X-BYTERANGE ```
30 lines
985 B
Nix
30 lines
985 B
Nix
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.84";
|
|
name = "mediainfo-${version}";
|
|
src = fetchurl {
|
|
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
|
|
sha256 = "0w3hm34amfy5bq3n1jihbwqvwqn0f8kvvq3lfc8nfwf8v7mjn7q9";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ libzen libmediainfo zlib ];
|
|
|
|
sourceRoot = "./MediaInfo/Project/GNU/CLI/";
|
|
|
|
configureFlags = [ "--with-libmediainfo=${libmediainfo}" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Supplies technical and tag information about a video or audio file";
|
|
longDescription = ''
|
|
MediaInfo is a convenient unified display of the most relevant technical
|
|
and tag data for video and audio files.
|
|
'';
|
|
homepage = http://mediaarea.net/;
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.devhell ];
|
|
};
|
|
}
|