libvdpau, vdpauinfo: update to 0.9, extend meta

Add myself as a maintainer.
The rebuild impact is large, mostly through mesa -> {qt, gtk}.
This commit is contained in:
Vladimír Čunát 2014-12-25 09:42:31 +01:00
parent 47a9d03541
commit 3421d4c470
2 changed files with 13 additions and 9 deletions

View File

@ -1,22 +1,24 @@
{ stdenv, fetchurl, pkgconfig, xorg }: { stdenv, fetchurl, pkgconfig, xorg }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libvdpau-0.8"; name = "libvdpau-0.9";
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 = "1v81875hppablq9gpsmvhnyl7z80zihx6arry758pvdbq4fd39vk"; sha256 = "0vhfkjqghfva3zjif04w7pdp84g08c8xnwir3ah4b99m10a5fag3";
}; };
buildInputs = with xorg; [ pkgconfig dri2proto libXext ]; buildInputs = with xorg; [ pkgconfig dri2proto libXext ];
propagatedBuildInputs = [ xorg.libX11 ]; propagatedBuildInputs = [ xorg.libX11 ];
configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64" ]; configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64";
meta = with stdenv.lib; { 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 = licenses.mit; license = licenses.mit; # expat version
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ];
}; };
} }

View File

@ -1,18 +1,20 @@
{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }: { stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vdpauinfo-0.1"; name = "vdpauinfo-0.9";
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 = "17q1spsrd5i4jzhpacbs0bb4blf74j8s45rpg0znyc1yjfk5dj5h"; sha256 = "1qy84clsz3l3hvhaxw01rl4bjqlsaml5l63rc43vck6vh8vgwh50";
}; };
buildInputs = [ pkgconfig xlibs.libX11 libvdpau ]; buildInputs = [ pkgconfig libvdpau ];
meta = { meta = with stdenv.lib; {
homepage = http://people.freedesktop.org/~aplattner/vdpau/; homepage = http://people.freedesktop.org/~aplattner/vdpau/;
description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system"; description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system";
license = "bsd"; license = licenses.mit; # expat version
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ];
}; };
} }