about summary refs log tree commit diff
path: root/pkgs/applications/editors/poke
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-05-22 19:23:14 -0700
committerJonathan Ringer <jonringer117@gmail.com>2021-05-22 19:23:14 -0700
commitb9b9cdb87cb0919bc37ccd56b5d3a98ddf1f1c02 (patch)
tree105da645aa1080fac4b1bd6c326041a99ddcc62f /pkgs/applications/editors/poke
parent11a9ac00fc34ca9948ae05c034fa730163626e40 (diff)
parentbbcf840849fac7ded2e6349bb7de1cbec4e0e4a7 (diff)
Merge remote-tracking branch 'origin/staging' into staging-next
Diffstat (limited to 'pkgs/applications/editors/poke')
-rw-r--r--pkgs/applications/editors/poke/default.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/applications/editors/poke/default.nix b/pkgs/applications/editors/poke/default.nix
index f0b8c43546d8c..df53bcb52c992 100644
--- a/pkgs/applications/editors/poke/default.nix
+++ b/pkgs/applications/editors/poke/default.nix
@@ -40,7 +40,7 @@ in stdenv.mkDerivation rec {
   ] ++ lib.optional guiSupport makeWrapper;
 
   buildInputs = [ boehmgc readline ]
-  ++ lib.optional guiSupport tk
+  ++ lib.optionals guiSupport [ tk tcl.tclPackageHook tcllib ]
   ++ lib.optional miSupport json_c
   ++ lib.optional nbdSupport libnbd
   ++ lib.optional textStylingSupport gettext
@@ -57,11 +57,6 @@ in stdenv.mkDerivation rec {
   doCheck = !isCross;
   checkInputs = lib.optionals (!isCross) [ dejagnu ];
 
-  postFixup = lib.optionalString guiSupport ''
-    wrapProgram "$out/bin/poke-gui" \
-      --prefix TCLLIBPATH ' ' ${tcllib}/lib/tcllib${tcllib.version}
-  '';
-
   meta = with lib; {
     description = "Interactive, extensible editor for binary data";
     homepage = "http://www.jemarch.net/poke";