vdpauinfo: 1.3 -> 1.5

This commit is contained in:
Anthony Roussel 2022-10-08 15:14:54 +02:00
parent 5f41d9525a
commit c1af7320e6
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -1,15 +1,16 @@
{ lib, stdenv, fetchurl, pkg-config, libvdpau }:
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libvdpau }:
stdenv.mkDerivation rec {
pname = "vdpauinfo";
version = "1.3";
version = "1.5";
src = fetchurl {
url = "https://gitlab.freedesktop.org/vdpau/vdpauinfo/uploads/6fa9718c507ef0fb6966170ef55344bf/${pname}-${version}.tar.gz";
sha256 = "0s6jdadnycyd1agsnfx7hrf17hmipasx1fpmppd4m1z6i9sp1i6g";
url = "https://gitlab.freedesktop.org/vdpau/vdpauinfo/-/archive/${version}/${pname}-${version}.tar.bz2";
hash = "sha256-uOs/r8Ow7KvSpY1NhD2A+D4Qs6iWJe4fZGfVj6nIiCw=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libvdpau ];
meta = with lib; {
@ -17,6 +18,6 @@ stdenv.mkDerivation rec {
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 ];
maintainers = with maintainers; [ vcunat ];
};
}