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.
This commit is contained in:
Lluís Batlle i Rossell
2014-01-20 13:47:24 +01:00
parent 4a4950f323
commit 3faf620e8a
2 changed files with 4 additions and 4 deletions
@@ -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 = ''