lesstif: use xorg.* packages directly instead of xlibsWrapper indirection
Validated as no change in `out` output with `diffoscope`.
This commit is contained in:
parent
4c5c40f176
commit
2f685ba86f
1 changed files with 24 additions and 3 deletions
|
@ -1,4 +1,15 @@
|
|||
{lib, stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, freetype
|
||||
, fontconfig
|
||||
, libICE
|
||||
, libX11
|
||||
, libXp
|
||||
, libXau
|
||||
, libXext
|
||||
, libXt
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lesstif";
|
||||
|
@ -7,8 +18,18 @@ stdenv.mkDerivation rec {
|
|||
url = "mirror://sourceforge/lesstif/${pname}-${version}.tar.bz2";
|
||||
sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
|
||||
};
|
||||
buildInputs = [xlibsWrapper];
|
||||
propagatedBuildInputs = [libXp libXau];
|
||||
buildInputs = [
|
||||
freetype
|
||||
fontconfig
|
||||
libICE
|
||||
libX11
|
||||
libXext
|
||||
libXt
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
libXau
|
||||
libXp
|
||||
];
|
||||
|
||||
# These patches fix a number of later issues - in particular the
|
||||
# render_table_crash shows up in 'arb'. The same patches appear
|
||||
|
|
Loading…
Reference in a new issue