xspim: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
parent
ac36151fcb
commit
75633a59b1
1 changed files with 11 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchsvn, imake, bison, flex, xlibsWrapper, libXaw, libXpm, ... }:
|
||||
{ lib, stdenv, fetchsvn, imake, bison, flex, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xspim";
|
||||
|
@ -11,7 +11,16 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ imake bison flex ];
|
||||
buildInputs = [ xlibsWrapper libXaw libXpm ];
|
||||
buildInputs = [
|
||||
xorg.libICE
|
||||
xorg.libSM
|
||||
xorg.libX11
|
||||
xorg.libXaw
|
||||
xorg.libXext
|
||||
xorg.libXmu
|
||||
xorg.libXpm
|
||||
xorg.libXt
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
cd xspim
|
||||
|
|
Loading…
Reference in a new issue