wordnet: drop unused xlibsWrapper

Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
Sergei Trofimovich 2022-10-29 17:58:24 +01:00 committed by Bjørn Forsman
parent 3d5f6e4c31
commit 3809602fd4

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, tcl, tk, Cocoa, xlibsWrapper, makeWrapper }:
{ lib, stdenv, fetchurl, tcl, tk, Cocoa, makeWrapper }:
stdenv.mkDerivation rec {
version = "3.0";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ tcl tk xlibsWrapper ]
buildInputs = [ tcl tk ]
++ lib.optionals stdenv.isDarwin [ Cocoa ];
hardeningDisable = [ "format" ];