xxgdb: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
parent
0b67da19df
commit
ebe6f51849
1 changed files with 12 additions and 2 deletions
|
@ -1,4 +1,14 @@
|
|||
{ lib, stdenv, fetchurl, imake, xlibsWrapper, gccmakedep, libXaw }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, imake
|
||||
, gccmakedep
|
||||
, libX11
|
||||
, libXaw
|
||||
, libXext
|
||||
, libXmu
|
||||
, libXt
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xxgdb";
|
||||
|
@ -15,7 +25,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
nativeBuildInputs = [ imake gccmakedep ];
|
||||
buildInputs = [ xlibsWrapper libXaw ];
|
||||
buildInputs = [ libX11 libXaw libXext libXmu libXt ];
|
||||
|
||||
preConfigure = ''
|
||||
mkdir build
|
||||
|
|
Loading…
Reference in a new issue