summary refs log tree commit diff
path: root/pkgs/applications/misc/mediainfo-gui
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-09-02 21:04:24 +0100
committerRok Garbas <rok@garbas.si>2015-09-03 13:00:47 +0200
commit32d0d863bcda824d7d8952daf871d398e3a049b1 (patch)
tree7b483d0709fb522c901792e29b65475154e2efdf /pkgs/applications/misc/mediainfo-gui
parentb22e6cb29927511c14b745405f4c157dd66513b4 (diff)
downloadnixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar.gz
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar.bz2
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar.lz
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar.xz
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.tar.zst
nixpkgs-32d0d863bcda824d7d8952daf871d398e3a049b1.zip
{lib}mediainfo{-gui}: 0.7.76 -> 0.7.77, fixes #9617
Local build and run successful.

From the ChangeLog:
```
Version 0.7.77, 2015-09-02

+ #B941, MXF: files having only a video stream and an ancillary data
  stream were having incorrect second video stream
+ MOV: detection of r210 CodecID as raw RGB
+ Ancillary data: detection of all metadata blocks (previously: only the
  first one was detected)
x MPEG-TS: Wrong demux of TSP (188+16 TS) files having PES with only
  padding x MediaTrace #2: XML malformed with Flags items (hotfix, flags
  meaning disabled in XML output)
x MediaTrace #3: XML malformed with some MP4 files
x MediaTrace #6: XML duplicated attributes
x MediaTrace #10: versioned xsd, creating library name and version
x MediaTrace: XML content was not escaped
x #B947, Amazon S3 support (REST API v2), CLI/DLL only and if compiled
  with libcurl support: Analyze file on s3 was not working if secret key
  contains / character
```
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 939edc97be1..55de1425787 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.76";
+  version = "0.7.77";
   name = "mediainfo-gui-${version}";
   src = fetchurl {
     url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
-    sha256 = "14vy2a9bjjwxyk8zh0ysin8fb1lj9yz17yd82vxrp1zvxsgyg5ck";
+    sha256 = "0n15z1jlj5s69pwk3mdv4r5c8ncfy7qjbdw5wfwynwypkl5382pn";
   };
 
   buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ];