Update dependencies
This commit is contained in:
parent
62d5a1ae06
commit
2301f5fa07
3 changed files with 42 additions and 10 deletions
32
patches/123757.patch
Normal file
32
patches/123757.patch
Normal file
|
@ -0,0 +1,32 @@
|
|||
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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue