From bdd343ece720a653b61ba0efeb8435d802cb3de1 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 5 Jun 2023 16:18:37 +0300 Subject: [PATCH 1/3] chessdb: drop TK_LIBRARY --- pkgs/games/chessdb/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/games/chessdb/default.nix b/pkgs/games/chessdb/default.nix index 4b96662d84d7..db6214bdf096 100644 --- a/pkgs/games/chessdb/default.nix +++ b/pkgs/games/chessdb/default.nix @@ -20,10 +20,6 @@ stdenv.mkDerivation rec { "MANDIR=$(out)/man" ]; - postInstall = '' - wrapProgram $out/bin/chessdb --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" - ''; - meta = { homepage = "https://chessdb.sourceforge.net/"; description = "A free chess database"; From a6f42ce4cfa7e2f8ca844abc8c1ea3f9d8d89943 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 5 Jun 2023 16:18:19 +0300 Subject: [PATCH 2/3] vkeybd: drop TK_LIBRARY --- pkgs/applications/audio/vkeybd/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/applications/audio/vkeybd/default.nix b/pkgs/applications/audio/vkeybd/default.nix index ec6391562174..642a75f71f2f 100644 --- a/pkgs/applications/audio/vkeybd/default.nix +++ b/pkgs/applications/audio/vkeybd/default.nix @@ -19,10 +19,6 @@ stdenv.mkDerivation rec { makeFlags = [ "TKLIB=-l${tk.libPrefix}" "TCLLIB=-l${tcl.libPrefix}" ]; - postInstall = '' - wrapProgram $out/bin/vkeybd --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" - ''; - meta = with lib; { description = "Virtual MIDI keyboard"; homepage = "https://www.alsa-project.org/~tiwai/alsa.html"; From 440c4bd0ec002a0d5fd7064fff333419dfd2eae1 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 5 Jun 2023 16:18:31 +0300 Subject: [PATCH 3/3] wordnet: drop TK_LIBRARY --- pkgs/applications/misc/wordnet/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/applications/misc/wordnet/default.nix b/pkgs/applications/misc/wordnet/default.nix index d49f55574a86..88cc16ae7645 100644 --- a/pkgs/applications/misc/wordnet/default.nix +++ b/pkgs/applications/misc/wordnet/default.nix @@ -25,7 +25,6 @@ stdenv.mkDerivation rec { ]; postInstall = '' - wrapProgram $out/bin/wishwn --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" wrapProgram $out/bin/wnb --prefix PATH : "$out/bin" '';