glbinding: dropped unused xlibsWrapper input

Validated as no change in `out` output with `diffoscope`.
This commit is contained in:
Sergei Trofimovich 2022-11-14 23:53:07 +00:00
parent a82e6b5dae
commit 11d9ef272d

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, libGLU, xlibsWrapper }:
{ lib, stdenv, fetchFromGitHub, cmake, libGLU }:
stdenv.mkDerivation rec {
pname = "glbinding";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libGLU xlibsWrapper ];
buildInputs = [ libGLU ];
meta = with lib; {
homepage = "https://github.com/cginternals/glbinding/";