Merge pull request #195093 from anthonyroussel/vdpauinfo_1_5

vdpauinfo: 1.3 -> 1.5
This commit is contained in:
Anderson Torres
2022-10-09 08:43:38 -03:00
committed by GitHub
+7 -6
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 ];
};
}