summary refs log tree commit diff
path: root/pkgs/development/libraries/libva
diff options
context:
space:
mode:
authorJack Cummings <jack@mudshark.org>2013-05-23 16:25:21 -0700
committerJack Cummings <jack@mudshark.org>2013-05-23 16:25:21 -0700
commit253ee6f6a3573c5ed59745944780e8ca1ecefa1f (patch)
treea1eac09e3b7d9432f761460d73c5b99796cae577 /pkgs/development/libraries/libva
parent16b2e1b46f0bb72ba82668ec2e307d80e2937798 (diff)
downloadnixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar.gz
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar.bz2
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar.lz
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar.xz
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.tar.zst
nixpkgs-253ee6f6a3573c5ed59745944780e8ca1ecefa1f.zip
update to 2013Q1 Intel Graphics Stack Release
This changeset updates to all of the versions in
https://01.org/linuxgraphics/downloads/2013/2013q1-intel-graphics-stack-release
(but does not regression from newer version).

I tried generating 'servers/x11/xorg/default.nix' with the perl script,
but unrelated packges changed, so I just manually updated the file.
Diffstat (limited to 'pkgs/development/libraries/libva')
-rw-r--r--pkgs/development/libraries/libva/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix
index 5caea5ba610..5b35d2b24ad 100644
--- a/pkgs/development/libraries/libva/default.nix
+++ b/pkgs/development/libraries/libva/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, libX11, pkgconfig, libXext, mesa, libdrm, libXfixes }:
 
 stdenv.mkDerivation rec {
-  name = "libva-1.1.0";
+  name = "libva-1.1.1";
   
   src = fetchurl {
     url = "http://www.freedesktop.org/software/vaapi/releases/libva/${name}.tar.bz2";
-    sha256 = "1a7g7i96ww8hmim2pq2a3xc89073lzacxn1xh9526bzhlqjdqsnv";
+    sha256 = "0kfdcrzcr82g15l0vvmm6rqr0f0604d4dgrza78gn6bfx7rppby0";
   };
 
   buildInputs = [ libX11 libXext pkgconfig mesa libdrm libXfixes ];