nixpkgs/pkgs/tools/X11/vdpauinfo/default.nix

19 lines
544 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:
stdenv.mkDerivation rec {
2013-11-19 09:12:45 +00:00
name = "vdpauinfo-0.1";
src = fetchurl {
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
2013-11-19 09:12:45 +00:00
sha256 = "17q1spsrd5i4jzhpacbs0bb4blf74j8s45rpg0znyc1yjfk5dj5h";
};
buildInputs = [ pkgconfig xlibs.libX11 libvdpau ];
meta = {
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 = "bsd";
};
}