3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #201262 from trofi/glbinding-without-xlibsWrapper

glbinding: dropped unused xlibsWrapper input
This commit is contained in:
Sergei Trofimovich 2022-11-18 22:34:10 +00:00 committed by GitHub
commit 3e9bb29b86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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/";