Skip to content

Commit

Permalink
soxt: use xorg.* packages directly instead of xlibsWrapper indirection
Browse files Browse the repository at this point in the history
Tested as no material change in `out` output with `diffoscope`.
  • Loading branch information
trofi authored and bjornfor committed Oct 30, 2022
1 parent d5b82c0 commit f88447d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/soxt/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit f88447d

Please sign in to comment.