* x264: bump to the latest snapshot to get MPlayer with x264 support

to build.

svn path=/nixpkgs/trunk/; revision=26867
This commit is contained in:
Eelco Dolstra 2011-04-17 17:10:37 +00:00
parent c7bf27de02
commit 69c0cfc9a5

View File

@ -1,12 +1,12 @@
{stdenv, fetchurl, yasm}:
stdenv.mkDerivation rec {
version = "snapshot-20100624-2245";
version = "snapshot-20110416-2245-stable";
name = "x264-${version}";
src = fetchurl {
url = "ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-${version}.tar.bz2";
sha256 = "0hva3j7h99hl3l1p32a1j6p35s5aakkg3plp8xx1wk6qplxhkqsq";
sha256 = "17bbczmsln6wmw7vwjmmr18bhngj1b2xfr9fq3a3n54706df9370";
};
patchPhase = ''
@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
buildInputs = [ yasm ];
meta = {
description = "library for encoding H264/AVC video streams";
homepage = http://www.videolan.org/developers/x264.html;
license = "GPL";
description = "library for encoding H264/AVC video streams";
homepage = http://www.videolan.org/developers/x264.html;
license = "GPL";
};
}