2012-06-28 10:38:49 +01:00
|
|
|
{ stdenv, fetchurl, libogg, libvorbis, libdvdread }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ogmtools-1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-05 19:42:46 +00:00
|
|
|
url = "https://www.bunkus.org/videotools/ogmtools/${name}.tar.bz2";
|
2012-06-28 10:38:49 +01:00
|
|
|
sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [libogg libvorbis libdvdread];
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Tools for modifying and inspecting OGG media streams";
|
|
|
|
longDescription = ''
|
|
|
|
These tools allow information about (ogminfo) or extraction from
|
|
|
|
(ogmdemux) or creation of (ogmmerge) OGG media streams. Includes dvdxchap
|
|
|
|
tool for extracting chapter information from DVD.
|
|
|
|
'';
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://www.bunkus.org/videotools/ogmtools/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2017-09-22 15:24:29 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-06-28 10:38:49 +01:00
|
|
|
};
|
|
|
|
}
|