2016-03-06 17:50:51 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libebml }:
|
2011-02-12 12:18:46 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-30 06:04:23 -07:00
|
|
|
name = "libmatroska-1.4.7";
|
2011-02-12 12:18:46 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.bz2";
|
2017-04-30 06:04:23 -07:00
|
|
|
sha256 = "1yi5cnv13nhl27xyqayd5l3sf0j3swfj3apzibv71yg9pariwi26";
|
2011-02-12 12:18:46 -08:00
|
|
|
};
|
|
|
|
|
2016-03-06 17:50:51 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libebml ];
|
2011-02-12 12:18:46 -08:00
|
|
|
|
2015-03-05 12:46:13 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A library to parse Matroska files";
|
|
|
|
homepage = http://matroska.org/;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
platforms = platforms.unix;
|
2011-02-12 12:18:46 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|