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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
784 B
Nix
Raw Normal View History

2022-10-08 15:14:54 +02:00
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libvdpau }:
stdenv.mkDerivation rec {
2020-02-15 18:14:56 +01:00
pname = "vdpauinfo";
2022-10-08 15:14:54 +02:00
version = "1.5";
2013-11-19 10:12:45 +01:00
src = fetchurl {
2022-10-08 15:14:54 +02:00
url = "https://gitlab.freedesktop.org/vdpau/vdpauinfo/-/archive/${version}/${pname}-${version}.tar.bz2";
hash = "sha256-uOs/r8Ow7KvSpY1NhD2A+D4Qs6iWJe4fZGfVj6nIiCw=";
};
2022-10-08 15:14:54 +02:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libvdpau ];
meta = with lib; {
homepage = "https://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;
2022-10-08 15:14:54 +02:00
maintainers = with maintainers; [ vcunat ];
2023-11-23 22:09:35 +01:00
mainProgram = "vdpauinfo";
};
}