mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
libvdpau-va-gl: drop obsolete ffmpeg_3 dependency (#123757)
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.
This commit is contained in:
parent
644f7ba293
commit
4445699061
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue