ogmtools: new package
This commit is contained in:
parent
38bcd42219
commit
42ea23675e
21
pkgs/applications/video/ogmtools/default.nix
Normal file
21
pkgs/applications/video/ogmtools/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, libogg, libvorbis, libdvdread }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ogmtools-1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.bunkus.org/videotools/ogmtools/${name}.tar.bz2";
|
||||
sha256 = "1spx81p5wf59ksl3r3gvf78d77sh7gj8a6lw773iv67bphfivmn8";
|
||||
};
|
||||
|
||||
buildInputs = [libogg libvorbis libdvdread];
|
||||
|
||||
meta = {
|
||||
description = "Tools for modifying and inspecting OGG media streams. Includes dvdxchap tool for extracting chapter information from DVD.";
|
||||
longDescription = "These tools allow information about (ogminfo) or extraction from (ogmdemux) or creation of (ogmmerge) OGG media streams.";
|
||||
homepage = http://www.bunkus.org/videotools/ogmtools/;
|
||||
license = "GPLv2";
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
@ -7164,6 +7164,8 @@ let
|
||||
|
||||
offrss = callPackage ../applications/networking/offrss { };
|
||||
|
||||
ogmtools = callPackage ../applications/video/ogmtools { };
|
||||
|
||||
oneteam = callPackage ../applications/networking/instant-messengers/oneteam {};
|
||||
|
||||
openbox = callPackage ../applications/window-managers/openbox { };
|
||||
|
Loading…
Reference in New Issue
Block a user