summary refs log tree commit diff
path: root/pkgs/applications/video/ogmtools/default.nix
blob: c9c5190dc5398176c5b02877ea51a5f5b500b1c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, libogg, libvorbis, libdvdread }:

stdenv.mkDerivation rec {
  name = "ogmtools-1.5";

  src = fetchurl {
    url = "https://www.bunkus.org/videotools/ogmtools/${name}.tar.bz2";
    sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8";
  };

  buildInputs = [libogg libvorbis libdvdread];

  meta = {
    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.
    '';
    homepage = "https://www.bunkus.org/videotools/ogmtools/";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}