32 lines
1.4 KiB
Diff
32 lines
1.4 KiB
Diff
From 3bd0e3b5189ae5d8ed31f14e231c09b38b5f558e Mon Sep 17 00:00:00 2001
|
|
From: Pierre Bourdon <delroth@gmail.com>
|
|
Date: Thu, 20 May 2021 04:13:35 +0200
|
|
Subject: [PATCH] libvdpau-va-gl: drop obsolete ffmpeg_3 dependency
|
|
|
|
I couldn't find any reference as to why this dependency would be
|
|
required for 0.4.2. Digging into the changelog, it looks like 0.4.0
|
|
dropped the libswscale dependency, so this seems like it's now unneeded.
|
|
---
|
|
pkgs/development/libraries/libvdpau-va-gl/default.nix | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/pkgs/development/libraries/libvdpau-va-gl/default.nix b/pkgs/development/libraries/libvdpau-va-gl/default.nix
|
|
index 85ebef12fe1fda..7a042a172c821a 100644
|
|
--- a/pkgs/development/libraries/libvdpau-va-gl/default.nix
|
|
+++ b/pkgs/development/libraries/libvdpau-va-gl/default.nix
|
|
@@ -1,5 +1,5 @@
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libX11, libpthreadstubs, libXau, libXdmcp
|
|
-, libXext, libvdpau, glib, libva, ffmpeg_3, libGLU }:
|
|
+, libXext, libvdpau, glib, libva, libGLU }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libvdpau-va-gl";
|
|
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
- buildInputs = [ libX11 libpthreadstubs libXau libXdmcp libXext libvdpau glib libva ffmpeg_3 libGLU ];
|
|
+ buildInputs = [ libX11 libpthreadstubs libXau libXdmcp libXext libvdpau glib libva libGLU ];
|
|
|
|
doCheck = false; # fails. needs DRI access
|
|
|