Updating ffmpeg and libvpx.

svn path=/nixpkgs/trunk/; revision=26938
This commit is contained in:
Lluís Batlle i Rossell
2011-04-23 20:58:52 +00:00
parent 1a83a07123
commit 3b0ea0e5d4
2 changed files with 50 additions and 22 deletions

View File

@@ -1,11 +1,11 @@
{stdenv, fetchurl, bash, yasm}:
{stdenv, fetchurl, bash, yasm, which}:
stdenv.mkDerivation rec {
name = "libvpx-0.9.1";
name = "libvpx-0.9.6";
src = fetchurl {
url = http://webm.googlecode.com/files/libvpx-0.9.1.tar.bz2;
sha256 = "0ngc8y12np2q6yhrrn6cbmlbzwbk10fnldj8d5dxxzvrw1iy9s64";
url = http://webm.googlecode.com/files/libvpx-v0.9.6.tar.bz2;
sha256 = "0wxay9wss4lawrcmnwqkpy0rdnaih1k7ilzh284mgyqnya78mg98";
};
patchPhase = ''
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
make quiet=false DIST_DIR=$out install
'';
buildInputs = [ yasm ];
buildInputs = [ yasm which ];
meta = {
description = "VP8 video encoder";