about summary refs log tree commit diff
path: root/pkgs/applications/editors/nedit
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-30 07:45:01 +0000
committerSergei Trofimovich <slyich@gmail.com>2022-10-30 14:48:43 +0000
commitda9574e43153ac3eb245eeaa684657a5b04458a4 (patch)
tree2ef384dfd57575857564b1db64b9ddb24a6ad39b /pkgs/applications/editors/nedit
parent4fbac1297f16ed6a096ab982d99a33cd90ae3c07 (diff)
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>
Diffstat (limited to 'pkgs/applications/editors/nedit')
-rw-r--r--pkgs/applications/editors/nedit/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/editors/nedit/default.nix b/pkgs/applications/editors/nedit/default.nix
index 5a523c05d7959..b49fbc14fad9c 100644
--- a/pkgs/applications/editors/nedit/default.nix
+++ b/pkgs/applications/editors/nedit/default.nix
@@ -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";