about summary refs log tree commit diff
path: root/pkgs/applications/misc/mediainfo-gui
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2016-01-03 22:12:38 +0000
committerdevhell <^@regexmail.net>2016-01-03 22:12:38 +0000
commit7526a1d54227308125d9079153b2ebfb1456494b (patch)
treefa7cf956919ae0b486536d247cebf0a61b325e77 /pkgs/applications/misc/mediainfo-gui
parentab9bf1e4fae4fd4bda490eb7bbcf79f8593de5af (diff)
downloadnixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar.gz
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar.bz2
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar.lz
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar.xz
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.tar.zst
nixlib-7526a1d54227308125d9079153b2ebfb1456494b.zip
{lib}mediainfo{-gui}: 0.7.80 -> 0.7.81
Built and run locally.

From the Changelog:
```
Version 0.7.81, 2015-12-31

+ Acquisition Metadata: support of all SMPTE RDD18 elements
+ Matroska: cover presence and content of the cover, thanks to Max Pozdeev
+ #F446, Matroska: Handling of cropping values, thanks to Max Pozdeev
+ Improvement of Python binding: Mac Os X support, Python2 and Python3
  can use same MediaInfoDLL.py
+ #F484, AVI: OpenDML Interlaced / Progressive scan type detection
+ MP4: support of AtomicParsley imdb tag
x #B959, MPEG-TS: MPEG-1 Video appeared as MPEG-2 Video
x #B914, Matroska: Undefined number of chapters in some M4V with Timed
  Text, thanks to Max Pozdeev
x #B962, Matroska: negative timecodes were not correctly handled
x #B964, FLV: was hanging trying to open some FLV files
x JPEG in AVI or MOV: better handling of buggy APP0/AVI1, avoiding some
  false positives about interlacement
x DVCPRO HD: some containers consider DVCPRO HD as with width 1920
  despite the fact it is 1280 or 1440, using 1280 or 1440 in all cases
```
Diffstat (limited to 'pkgs/applications/misc/mediainfo-gui')
-rw-r--r--pkgs/applications/misc/mediainfo-gui/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix
index 9bed20c0c736..687584de553d 100644
--- a/pkgs/applications/misc/mediainfo-gui/default.nix
+++ b/pkgs/applications/misc/mediainfo-gui/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }:
 
 stdenv.mkDerivation rec {
-  version = "0.7.80";
+  version = "0.7.81";
   name = "mediainfo-gui-${version}";
   src = fetchurl {
     url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
-    sha256 = "12iwiw4vcmyi8l04j540kbqifmr1wnlfw5cway185iqia43s6c10";
+    sha256 = "1aah8y4kqhghqhcfm6ydgf3hj6q05dllfh0m1lbaij0y8yrrwz07";
   };
 
   buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ];