lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 23 lines 570 B view raw
1{ stdenv, fetchurl, pkgconfig, libebml }: 2 3stdenv.mkDerivation rec { 4 name = "libmatroska-1.4.5"; 5 6 src = fetchurl { 7 url = "http://dl.matroska.org/downloads/libmatroska/${name}.tar.bz2"; 8 sha256 = "1g2p2phmhkp86ldd2zqx6q0s33r7d38rsfnr4wmmdr81d6j3y0kr"; 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 = http://matroska.org/; 18 license = licenses.lgpl21; 19 maintainers = [ maintainers.spwhitt ]; 20 platforms = platforms.unix; 21 }; 22} 23