about summary refs log tree commit diff
path: root/pkgs/applications/video/ogmtools
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2012-06-28 11:38:49 +0200
committerMathijs Kwik <mathijs@bluescreen303.nl>2012-06-28 11:41:58 +0200
commit42ea23675ec564e81d08834df3379cdb7762f041 (patch)
tree1611255611d9d3c0a9d2c7810a8374b7a1eea7e3 /pkgs/applications/video/ogmtools
parent38bcd42219dbf836cbc64c8cceb8b513e9bf11f8 (diff)
ogmtools: new package
Diffstat (limited to 'pkgs/applications/video/ogmtools')
-rw-r--r--pkgs/applications/video/ogmtools/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/video/ogmtools/default.nix b/pkgs/applications/video/ogmtools/default.nix
new file mode 100644
index 0000000000000..1a6bc66299931
--- /dev/null
+++ b/pkgs/applications/video/ogmtools/default.nix
@@ -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;
+  };
+}