mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
3421d4c470
Add myself as a maintainer. The rebuild impact is large, mostly through mesa -> {qt, gtk}.
20 lines
645 B
Nix
20 lines
645 B
Nix
{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vdpauinfo-0.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
|
sha256 = "1qy84clsz3l3hvhaxw01rl4bjqlsaml5l63rc43vck6vh8vgwh50";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig libvdpau ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
|
description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system";
|
|
license = licenses.mit; # expat version
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.vcunat ];
|
|
};
|
|
}
|