about summary refs log tree commit diff
path: root/pkgs/development/libraries/libvorbis
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-08 19:54:16 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-08 19:54:16 +0000
commitd83e1b4b5d5984b553173a6c08c728a729ce5793 (patch)
treeb5bd7783b04811b4695359e62211be2857a0c496 /pkgs/development/libraries/libvorbis
parent1e0012c1abcd1e1b18f7428c387012c989e047f5 (diff)
Updating libvorbis and libogg, and enabling by default libvorbis and libxvid on ffmpeg.
I think there are little drawbacks on that, whlie there are benefits.


svn path=/nixpkgs/trunk/; revision=32145
Diffstat (limited to 'pkgs/development/libraries/libvorbis')
-rw-r--r--pkgs/development/libraries/libvorbis/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libvorbis/default.nix b/pkgs/development/libraries/libvorbis/default.nix
index d5f91c182605c..efb210d657629 100644
--- a/pkgs/development/libraries/libvorbis/default.nix
+++ b/pkgs/development/libraries/libvorbis/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchurl, libogg }:
+{ stdenv, fetchurl, libogg, xz }:
 
 stdenv.mkDerivation rec {
-  name = "libvorbis-1.3.2";
+  name = "libvorbis-1.3.3";
   
   src = fetchurl {
-    url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.bz2";
-    sha256 = "159khaa9j0pd4fm554m1igzmrhsa3qbh4n8avihfinwym05vc14z";
+    url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
+    sha256 = "1gby6hapz9njx4l9g0pndyk4q83z5fgrgc30mfwfgx7bllspsk43";
   };
 
+  buildNativeInputs = [ xz ];
   propagatedBuildInputs = [ libogg ];
 
   meta = {