libvdpau: minor update, fix license

Suse and wikipedia classify it as MIT,
although it seems the headers in sources aren't all consistent.
This commit is contained in:
Vladimír Čunát 2014-07-02 22:30:28 +02:00
parent 1dc09826f8
commit 51fd35e7b5

View File

@ -1,22 +1,22 @@
{ stdenv, fetchurl, pkgconfig, xlibs }: { stdenv, fetchurl, pkgconfig, xorg }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libvdpau-0.7"; name = "libvdpau-0.8";
src = fetchurl { src = fetchurl {
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz"; 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" ]; configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64" ];
meta = { meta = with stdenv.lib; {
homepage = http://people.freedesktop.org/~aplattner/vdpau/; homepage = http://people.freedesktop.org/~aplattner/vdpau/;
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)"; description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
license = "bsd"; license = licenses.mit;
}; };
} }