summary refs log tree commit diff
path: root/pkgs/development/libraries/liboggz
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-02-09 21:10:28 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-02-09 21:10:28 +0000
commite936f855a1383e04a862c19393e683adfada3fba (patch)
tree33b82cdb52c59346237b689db67e051e2cf9ac54 /pkgs/development/libraries/liboggz
parent525314a0cd6bd7064cddb27e55489fd2bc459eb2 (diff)
downloadnixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar.gz
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar.bz2
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar.lz
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar.xz
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.tar.zst
nixpkgs-e936f855a1383e04a862c19393e683adfada3fba.zip
Add liboggz
svn path=/nixpkgs/trunk/; revision=25867
Diffstat (limited to 'pkgs/development/libraries/liboggz')
-rw-r--r--pkgs/development/libraries/liboggz/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/libraries/liboggz/default.nix b/pkgs/development/libraries/liboggz/default.nix
new file mode 100644
index 00000000000..857455fb4f3
--- /dev/null
+++ b/pkgs/development/libraries/liboggz/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, libogg, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "liboggz-1.1.1";
+
+  src = fetchurl {
+    url = "http://downloads.xiph.org/releases/liboggz/${name}.tar.gz";
+    sha256 = "0nj17lhnsw4qbbk8jy4j6a78w6v2llhqdwq46g44mbm9w2qsvbvb";
+  };
+
+  propagatedBuildInputs = [ libogg ];
+
+  buildInputs = [ pkgconfig ];
+
+  meta = {
+    homepage = http://xiph.org/oggz/;
+    description = "A C library and tools for manipulating with Ogg files and streams";
+    longDescription = ''
+      Oggz comprises liboggz and the tool oggz, which provides commands to
+      inspect, edit and validate Ogg files. The oggz-chop tool can also be used
+      to serve time ranges of Ogg media over HTTP by any web server that
+      supports CGI.
+
+      liboggz is a C library for reading and writing Ogg files and streams.  It
+      offers various improvements over the reference libogg, including support
+      for seeking, validation and timestamp interpretation. Ogg is an
+      interleaving data container developed by Monty at Xiph.Org, originally to
+      support the Ogg Vorbis audio format but now used for many free codecs
+      including Dirac, FLAC, Speex and Theora.'';
+    maintainers = [ stdenv.lib.maintainers.urkud ];
+  };
+}