mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
nedit: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`. Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
This commit is contained in:
parent
4fbac1297f
commit
da9574e431
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, xlibsWrapper, motif, libXpm }:
|
||||
{ lib, stdenv, fetchurl, motif, libXpm, libXt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nedit";
|
||||
@ -11,8 +11,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
nativeBuildInputs = [ xlibsWrapper ];
|
||||
buildInputs = [ motif libXpm ];
|
||||
buildInputs = [ motif libXpm libXt ];
|
||||
|
||||
# the linux config works fine on darwin too!
|
||||
buildFlags = lib.optional (stdenv.isLinux || stdenv.isDarwin) "linux";
|
||||
|
Loading…
Reference in New Issue
Block a user