Unverified Commit 377db224 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #195093 from anthonyroussel/vdpauinfo_1_5

vdpauinfo: 1.3 -> 1.5
parents ff92a56f c1af7320
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
{ 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 ];
  };
}