summary refs log tree commit diff
path: root/pkgs/development/libraries/libvpx
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2014-01-20 13:46:44 +0100
committerLluís Batlle i Rossell <viric@viric.name>2014-01-20 13:47:24 +0100
commit3faf620e8a6b5bce115519714168eff5afe8e332 (patch)
tree45a6ba12484e3e793d64be82c950b4a5e655b095 /pkgs/development/libraries/libvpx
parent4a4950f3233973bfc25c346e2356418cc9e99bce (diff)
downloadnixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar.gz
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar.bz2
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar.lz
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar.xz
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.tar.zst
nixpkgs-3faf620e8a6b5bce115519714168eff5afe8e332.zip
Updating libvpx to 1.3.0, and making ffmpeg include vpx
I don't think there is any reason not to have vpx there. It's
part of webm.
Diffstat (limited to 'pkgs/development/libraries/libvpx')
-rw-r--r--pkgs/development/libraries/libvpx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix
index 46e73a121fe..677289c5158 100644
--- a/pkgs/development/libraries/libvpx/default.nix
+++ b/pkgs/development/libraries/libvpx/default.nix
@@ -1,13 +1,13 @@
 {stdenv, fetchurl, bash, yasm, which, perl}:
 
-let version = "1.2.0";
+let version = "1.3.0";
 in
 stdenv.mkDerivation rec {
   name = "libvpx-" + version;
 
   src = fetchurl { # sadly, there's no official tarball for this release
-    url = "ftp://ftp.archlinux.org/other/libvpx/libvpx-${version}.tar.xz";
-    sha256 = "02k9ylswgr2hvjqmg422fa9ggym0g94gzwb14nnckly698rvjc50";
+    url = "http://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2";
+    sha1 = "191b95817aede8c136cc3f3745fb1b8c50e6d5dc";
   };
 
   patchPhase = ''