From 69c0cfc9a5e2571b37b99e7cd16916d151a5d38b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 17 Apr 2011 17:10:37 +0000 Subject: [PATCH] * x264: bump to the latest snapshot to get MPlayer with x264 support to build. svn path=/nixpkgs/trunk/; revision=26867 --- pkgs/development/libraries/x264/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix index 9e5676e20123..6576a0d75d74 100644 --- a/pkgs/development/libraries/x264/default.nix +++ b/pkgs/development/libraries/x264/default.nix @@ -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"; }; }