summary refs log tree commit diff
path: root/pkgs/tools/misc/tmux
diff options
context:
space:
mode:
authorkoral <koral att mailoo dott org>2014-10-18 16:04:34 +0200
committerkoral <koral att mailoo dott org>2014-10-18 16:04:34 +0200
commit43292d1ebf7d4363e4e3c06bd9cba106e713c46d (patch)
treed86b5ae46fb0a3af1f343d2fdd9d8ae4c84e52eb /pkgs/tools/misc/tmux
parent0f8f98525bd99ee80bf4af9f5d5138a0a35a3628 (diff)
downloadnixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar.gz
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar.bz2
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar.lz
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar.xz
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.tar.zst
nixlib-43292d1ebf7d4363e4e3c06bd9cba106e713c46d.zip
Removed useless terminfo wrapping.
Users should manually set the TERMINFO environment variable.
Diffstat (limited to 'pkgs/tools/misc/tmux')
-rw-r--r--pkgs/tools/misc/tmux/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/tools/misc/tmux/default.nix b/pkgs/tools/misc/tmux/default.nix
index 823374771696..7180665bd3d5 100644
--- a/pkgs/tools/misc/tmux/default.nix
+++ b/pkgs/tools/misc/tmux/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ncurses, libevent, pkgconfig, makeWrapper}:
+{stdenv, fetchurl, ncurses, libevent, pkgconfig}:
 
 stdenv.mkDerivation rec {
   pname = "tmux";
@@ -12,13 +12,12 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
 
-  buildInputs = [ ncurses libevent makeWrapper ];
+  buildInputs = [ ncurses libevent ];
 
   postInstall =
     ''
       mkdir -p $out/etc/bash_completion.d
       cp -v examples/bash_completion_tmux.sh $out/etc/bash_completion.d/tmux
-      wrapProgram $out/bin/tmux --prefix TERMINFO : $out/share/terminfo
     '';
 
   meta = {
@@ -36,7 +35,7 @@ stdenv.mkDerivation rec {
           * Interactive menus to select windows, sessions or clients.
           * Change the current window by searching for text in the target.
           * Terminal locking, manually or after a timeout.
-          * A clean, easily extended, BSD-licensed codebase, under active development. 
+          * A clean, easily extended, BSD-licensed codebase, under active development.
       '';
 
     license = stdenv.lib.licenses.bsd3;