lol
1{ stdenv, fetchurl, pkgconfig, libebml }:
2
3stdenv.mkDerivation rec {
4 name = "libmatroska-1.4.8";
5
6 src = fetchurl {
7 url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.xz";
8 sha256 = "14n9sw974prr3yp4yjb7aadi6x2yz5a0hjw8fs3qigy5shh2piyq";
9 };
10
11 nativeBuildInputs = [ pkgconfig ];
12
13 buildInputs = [ libebml ];
14
15 meta = with stdenv.lib; {
16 description = "A library to parse Matroska files";
17 homepage = https://matroska.org/;
18 license = licenses.lgpl21;
19 maintainers = [ maintainers.spwhitt ];
20 platforms = platforms.unix;
21 };
22}
23