lol
at v192 24 lines 792 B view raw
1{ stdenv, fetchurl, libogg, libvorbis, libdvdread }: 2 3stdenv.mkDerivation rec { 4 name = "ogmtools-1.5"; 5 6 src = fetchurl { 7 url = "http://www.bunkus.org/videotools/ogmtools/${name}.tar.bz2"; 8 sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8"; 9 }; 10 11 buildInputs = [libogg libvorbis libdvdread]; 12 13 meta = { 14 description = "Tools for modifying and inspecting OGG media streams"; 15 longDescription = '' 16 These tools allow information about (ogminfo) or extraction from 17 (ogmdemux) or creation of (ogmmerge) OGG media streams. Includes dvdxchap 18 tool for extracting chapter information from DVD. 19 ''; 20 homepage = http://www.bunkus.org/videotools/ogmtools/; 21 license = stdenv.lib.licenses.gpl2; 22 platforms = stdenv.lib.platforms.all; 23 }; 24}