summary refs log tree commit diff
path: root/pkgs/development/libraries/libvdpau
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-07-02 22:30:28 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-07-02 22:30:28 +0200
commit51fd35e7b5ab69b60d8c9c87883139e71182f28f (patch)
treeea625b4773c9a0e1aeca1862a49e573cda8ff5ab /pkgs/development/libraries/libvdpau
parent1dc09826f8e6fd1976f37f69b932688da7fa457d (diff)
downloadnixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar.gz
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar.bz2
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar.lz
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar.xz
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.tar.zst
nixlib-51fd35e7b5ab69b60d8c9c87883139e71182f28f.zip
libvdpau: minor update, fix license
Suse and wikipedia classify it as MIT,
although it seems the headers in sources aren't all consistent.
Diffstat (limited to 'pkgs/development/libraries/libvdpau')
-rw-r--r--pkgs/development/libraries/libvdpau/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/libraries/libvdpau/default.nix b/pkgs/development/libraries/libvdpau/default.nix
index cc8b3f59529f..9d9528b75e4c 100644
--- a/pkgs/development/libraries/libvdpau/default.nix
+++ b/pkgs/development/libraries/libvdpau/default.nix
@@ -1,22 +1,22 @@
-{ stdenv, fetchurl, pkgconfig, xlibs }:
+{ stdenv, fetchurl, pkgconfig, xorg }:
 
 stdenv.mkDerivation rec {
-  name = "libvdpau-0.7";
+  name = "libvdpau-0.8";
 
   src = fetchurl {
     url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
-    sha256 = "1q5wx6fmqg2iiw57wxwh5vv4yszqs4nlvlzhzdn9vig8gi30ip14";
+    sha256 = "1v81875hppablq9gpsmvhnyl7z80zihx6arry758pvdbq4fd39vk";
   };
 
-  buildInputs = with xlibs; [ pkgconfig dri2proto libXext ];
+  buildInputs = with xorg; [ pkgconfig dri2proto libXext ];
 
-  propagatedBuildInputs = [ xlibs.libX11 ];
+  propagatedBuildInputs = [ xorg.libX11 ];
 
   configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://people.freedesktop.org/~aplattner/vdpau/;
     description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
-    license = "bsd";
+    license = licenses.mit;
   };
 }