libzen: 0.4.32 -> 0.4.33

Built and tested locally.

From the changelog:
```
Version 0.4.33, 2016-02-29

x File::Open(): using now FILE_APPEND_DATA on windows when append mode
  is requested
x File::Open(): accept file names with * and ? characters on non-Windows
  platforms
x Better MinGW and CygWin compatibility
x autogen.sh: Adding missing shebang
x Dir/Create: create the parents directory if not existing
```

Additionally, the package was cleaned up, now using `autoreconfHook` and
with some helpful pointers by @hrdinka.
This commit is contained in:
devhell 2016-03-11 22:11:22 +00:00
parent 2a288ad435
commit 7b32e5497c

View File

@ -1,26 +1,25 @@
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }:
{ stdenv, fetchurl, autoreconfHook }:
let version = "0.4.32"; in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
version = "0.4.33";
name = "libzen-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
sha256 = "0rhbiaywij6jj8d7vkc4v7y21ic1kv9fbn9lk82mm12yjwzlhhyd";
url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
sha256 = "0py5iagajz6m5zh26svkjyy85k1dmyhi6cdbmc3cb56a4ix1k2d2";
};
buildInputs = [ automake autoconf libtool pkgconfig ];
nativeBuildInputs = [ autoreconfHook ];
configureFlags = [ "--enable-shared" ];
sourceRoot = "./ZenLib/Project/GNU/Library/";
preConfigure = "sh autogen.sh";
meta = {
meta = with stdenv.lib; {
description = "Shared library for libmediainfo and mediainfo";
homepage = http://mediaarea.net/;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.devhell ];
homepage = https://mediaarea.net/;
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = [ maintainers.devhell ];
};
}