about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-17 17:10:37 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-17 17:10:37 +0000
commit69c0cfc9a5e2571b37b99e7cd16916d151a5d38b (patch)
tree918fe7db2aa57e5f858caa25abfd12a1bdc2eb51
parentc7bf27de021ac77376c9dbf1fd59f7d0e170799d (diff)
downloadnixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar.gz
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar.bz2
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar.lz
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar.xz
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.tar.zst
nixlib-69c0cfc9a5e2571b37b99e7cd16916d151a5d38b.zip
* x264: bump to the latest snapshot to get MPlayer with x264 support
  to build.

svn path=/nixpkgs/trunk/; revision=26867
-rw-r--r--pkgs/development/libraries/x264/default.nix10
1 files 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";
   };
 }