soxt: use xorg.* packages directly instead of xlibsWrapper indirection

Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
Sergei Trofimovich 2022-10-29 22:14:27 +01:00 committed by Bjørn Forsman
parent d5b82c0a63
commit f88447d108

View File

@ -1,4 +1,4 @@
{ fetchhg, lib, stdenv, cmake, coin3d, motif, xlibsWrapper, libXmu, libGLU, libGL }:
{ fetchhg, lib, stdenv, cmake, coin3d, motif, libXext, libXmu, libGLU, libGL }:
stdenv.mkDerivation {
pname = "soxt";
@ -12,7 +12,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ cmake ];
buildInputs = [ coin3d motif xlibsWrapper libGLU libGL libXmu ];
buildInputs = [ coin3d motif libGLU libGL libXext libXmu ];
meta = with lib; {
homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";