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:
parent
2a288ad435
commit
7b32e5497c
@ -1,26 +1,25 @@
|
|||||||
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }:
|
{ stdenv, fetchurl, autoreconfHook }:
|
||||||
|
|
||||||
let version = "0.4.32"; in
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.4.33";
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "libzen-${version}";
|
name = "libzen-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
|
url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2";
|
||||||
sha256 = "0rhbiaywij6jj8d7vkc4v7y21ic1kv9fbn9lk82mm12yjwzlhhyd";
|
sha256 = "0py5iagajz6m5zh26svkjyy85k1dmyhi6cdbmc3cb56a4ix1k2d2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ automake autoconf libtool pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
configureFlags = [ "--enable-shared" ];
|
configureFlags = [ "--enable-shared" ];
|
||||||
|
|
||||||
sourceRoot = "./ZenLib/Project/GNU/Library/";
|
sourceRoot = "./ZenLib/Project/GNU/Library/";
|
||||||
|
|
||||||
preConfigure = "sh autogen.sh";
|
preConfigure = "sh autogen.sh";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Shared library for libmediainfo and mediainfo";
|
description = "Shared library for libmediainfo and mediainfo";
|
||||||
homepage = http://mediaarea.net/;
|
homepage = https://mediaarea.net/;
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.devhell ];
|
maintainers = [ maintainers.devhell ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user