2016-03-11 23:11:22 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook }:
|
2014-12-17 01:24:18 +01:00
|
|
|
|
2016-03-11 23:11:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
{lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
Update to the latest version (note versioning change).
From the changelog for 'mediainfo' (libzen changelog is unavailable):
===
Version 17.10, 2017-11-02
--------------
+ We need your support! Visit https://mediaarea.net/SupportUs
+ Version scheme is now YY.MM (year dot month, 2 digits each)
+ New MediaInfo XML output, with XSD, more suitable for automatic
parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
+ New "Info_OutputFormats" option for listing supported output formats
+ Universal Ad ID: refactored display, better display of value and
registry, XML name slightly modified
+ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL,
MaxFALL)
+ BWF: display of UMID and loudness info
+ AAC: show program_config_element in trace
+ MPEG Audio: frame rate info
+ PCM in WAV and Matroska: Support of ValidBitsPerSample
+ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD
location
+ Matroska: tweaking frame rate empirical detection for some corner
cases
x I1070, LAME 3.100 info tag was incorrectly parsed
x B1068, MPEG Audio: Incoherent duration between General and Audio
parts, Audio part duration fixed
x Matroska: showing "A_MS/ACM" Matroska CodecID
x MXF: Fix crash with some buggy files
x MXF: was not well supporting MXF referencing only 1 file
x PCM in WAV: 8-bit content is unsigned and without endianess
x PCM in WAV and Matroska: More coherency between Wave info and
ExtensibleWave Info (bitdepth, sign)
x WAV: GUID display was with first 8 bytes in wrong order
x Several crash fixes
2017-11-08 11:06:57 +01:00
|
|
|
version = "0.4.37";
|
2014-12-17 01:24:18 +01:00
|
|
|
name = "libzen-${version}";
|
|
|
|
src = fetchurl {
|
2016-03-11 23:11:22 +01:00
|
|
|
url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
|
{lib-}mediainfo{-gui},libzen: 0.7.99 -> 17.10, 0.4.35 -> 0.4.37
Update to the latest version (note versioning change).
From the changelog for 'mediainfo' (libzen changelog is unavailable):
===
Version 17.10, 2017-11-02
--------------
+ We need your support! Visit https://mediaarea.net/SupportUs
+ Version scheme is now YY.MM (year dot month, 2 digits each)
+ New MediaInfo XML output, with XSD, more suitable for automatic
parsing. Use Option("Inform", "OLDXML") for keeping previous behavior
+ New "Info_OutputFormats" option for listing supported output formats
+ Universal Ad ID: refactored display, better display of value and
registry, XML name slightly modified
+ MOV: support of HDR metadata (MasteringDisplayColorVolume, MaxCLL,
MaxFALL)
+ BWF: display of UMID and loudness info
+ AAC: show program_config_element in trace
+ MPEG Audio: frame rate info
+ PCM in WAV and Matroska: Support of ValidBitsPerSample
+ I197, EBUCore: 1.8 output uses now final version of XSD and final XSD
location
+ Matroska: tweaking frame rate empirical detection for some corner
cases
x I1070, LAME 3.100 info tag was incorrectly parsed
x B1068, MPEG Audio: Incoherent duration between General and Audio
parts, Audio part duration fixed
x Matroska: showing "A_MS/ACM" Matroska CodecID
x MXF: Fix crash with some buggy files
x MXF: was not well supporting MXF referencing only 1 file
x PCM in WAV: 8-bit content is unsigned and without endianess
x PCM in WAV and Matroska: More coherency between Wave info and
ExtensibleWave Info (bitdepth, sign)
x WAV: GUID display was with first 8 bytes in wrong order
x Several crash fixes
2017-11-08 11:06:57 +01:00
|
|
|
sha256 = "1hcsrmn85b0xp0mp33aazk7g071q1v3f163nnhv8b0mv9c4bgsfn";
|
2014-12-17 01:24:18 +01:00
|
|
|
};
|
|
|
|
|
2016-03-11 23:11:22 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2014-12-19 00:11:55 +01:00
|
|
|
configureFlags = [ "--enable-shared" ];
|
2014-12-17 01:24:18 +01:00
|
|
|
|
|
|
|
sourceRoot = "./ZenLib/Project/GNU/Library/";
|
|
|
|
|
2015-11-08 16:05:26 +01:00
|
|
|
preConfigure = "sh autogen.sh";
|
2014-12-17 01:24:18 +01:00
|
|
|
|
2017-11-08 11:33:04 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-03-11 23:11:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-17 01:24:18 +01:00
|
|
|
description = "Shared library for libmediainfo and mediainfo";
|
2016-03-11 23:11:22 +01:00
|
|
|
homepage = https://mediaarea.net/;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.devhell ];
|
2014-12-17 01:24:18 +01:00
|
|
|
};
|
|
|
|
}
|