summary refs log tree commit diff
path: root/pkgs/development/libraries/libtheora
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2008-11-04 16:13:55 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2008-11-04 16:13:55 +0000
commit6ae377d5148362a474695a041e3d6828536f2c8c (patch)
tree61c454bac5891c0139cbee7602fc4cef050041a6 /pkgs/development/libraries/libtheora
parent8596239d14b573f18eefaed7fe7e4047818b61d3 (diff)
downloadnixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar.gz
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar.bz2
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar.lz
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar.xz
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.tar.zst
nixpkgs-6ae377d5148362a474695a041e3d6828536f2c8c.zip
update to 1.0
svn path=/nixpkgs/trunk/; revision=13187
Diffstat (limited to 'pkgs/development/libraries/libtheora')
-rw-r--r--pkgs/development/libraries/libtheora/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libtheora/default.nix b/pkgs/development/libraries/libtheora/default.nix
index 2a6f2254c14..7b63cbb9f78 100644
--- a/pkgs/development/libraries/libtheora/default.nix
+++ b/pkgs/development/libraries/libtheora/default.nix
@@ -1,10 +1,10 @@
 {stdenv, fetchurl, libogg, libvorbis}:
 
 stdenv.mkDerivation {
-  name = "libtheora-1.0beta2";
+  name = "libtheora-1.0";
   src = fetchurl {
-    url = http://downloads.xiph.org/releases/theora/libtheora-1.0beta2.tar.gz;
-    sha256 = "0iwwprpi4s9y37c5yvlb572wd5gb2s635pxrkz5589266g1j1dcg";
+    url = http://downloads.xiph.org/releases/theora/libtheora-1.0.tar.gz;
+    sha256 = "0j5hv0pfsiwa2qq5d647py4g7ixnax1v47xc3aj5sa9v2iknib6m";
   };
   propagatedBuildInputs = [libogg libvorbis];
 }