summary refs log tree commit diff
path: root/pkgs/applications/misc/mediainfo-gui
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2015-08-20 23:01:37 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-08-24 07:29:49 +0200
commitfee4fe1b5ec9fc032708cddaea20471cce46ef39 (patch)
tree6aa57868457ea76fedf20cd013433f71edbf92f1 /pkgs/applications/misc/mediainfo-gui
parent4bdcf1fa9525d8c63ac506956042b8ecc5d7e1e6 (diff)
downloadnixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar.gz
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar.bz2
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar.lz
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar.xz
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.tar.zst
nixpkgs-fee4fe1b5ec9fc032708cddaea20471cce46ef39.zip
{lib}mediainfo{-gui}: 0.7.75 -> 0.7.76
From the changelog:
```
Version 0.7.76, 2015-08-06

+ XML output: line breaks and indents in between attributes for readability
+ Trace feature: XML trace update, only if compiled with trace feature
+ Amazon S3 support (REST API v2), CLI/DLL only and if compiled with
  libcurl support
+ FFV1: improved slice analysis (currently activated only with trace
  feature and for 1st frame)
x MXF: optimization of the parsing, reading a lot less data (e.g. can be
  reduced from 1 GB to 10 MB with some UHD files)
x MXF: wrong frame count with files not having the video stream as the
  first stream
x Dolby E in MPEG-TS: "SMPTE ST 302" information was accidentally removed
x MPEG-TS: avoid filling delay from file name, not applicable on MPEG-TS
x MXF: better handling of huge padding blocks, better handling of
  descriptors without link to a TrackID
x IMX: streams claiming that they are IMX are actually pure MPEG Video,
  probing both IMX and MPEG Video

```
Diffstat (limited to 'pkgs/applications/misc/mediainfo-gui')
-rw-r--r--pkgs/applications/misc/mediainfo-gui/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix
index 3a597c9de52..939edc97be1 100644
--- a/pkgs/applications/misc/mediainfo-gui/default.nix
+++ b/pkgs/applications/misc/mediainfo-gui/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }:
 
 stdenv.mkDerivation rec {
-  version = "0.7.75";
+  version = "0.7.76";
   name = "mediainfo-gui-${version}";
   src = fetchurl {
     url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
-    sha256 = "1xdsy5z7x7bd251m26h5hcwcmgl6gklxj6h9q025mlnfmcs7pbdy";
+    sha256 = "14vy2a9bjjwxyk8zh0ysin8fb1lj9yz17yd82vxrp1zvxsgyg5ck";
   };
 
   buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ];
 
   sourceRoot = "./MediaInfo/Project/GNU/GUI/";
 
-  preConfigure = "sh autogen";
+  preConfigure = "sh autogen.sh";
 
   meta = {
     description = "Supplies technical and tag information about a video or audio file (GUI version)";