2016-03-31 15:22:17 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses, libevent, pkgconfig, makeWrapper }:
|
2016-04-12 01:15:10 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
bashCompletion = fetchFromGitHub {
|
2016-11-23 03:52:46 +00:00
|
|
|
owner = "imomaliev";
|
2016-04-12 01:15:10 +00:00
|
|
|
repo = "tmux-bash-completion";
|
2016-11-23 03:52:46 +00:00
|
|
|
rev = "fcda450d452f07d36d2f9f27e7e863ba5241200d";
|
|
|
|
sha256 = "092jpkhggjqspmknw7h3icm0154rg21mkhbc71j5bxfmfjdxmya8";
|
2016-04-12 01:15:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2010-11-28 12:38:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-07 22:19:14 +00:00
|
|
|
name = "tmux-${version}";
|
2017-10-05 19:43:16 +00:00
|
|
|
version = "2.6";
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2016-07-21 04:28:53 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2016-06-11 08:18:26 +00:00
|
|
|
|
2016-04-12 01:15:10 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tmux";
|
|
|
|
repo = "tmux";
|
|
|
|
rev = version;
|
2017-10-05 19:43:16 +00:00
|
|
|
sha256 = "0605y0nwfmf0mnq075vk80897c2cvhxxvxinqq7hvrpjf2ph5mww";
|
2010-11-28 12:38:35 +00:00
|
|
|
};
|
|
|
|
|
2016-04-12 01:15:10 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2016-03-31 15:22:17 +00:00
|
|
|
buildInputs = [ ncurses libevent makeWrapper ];
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2015-05-08 12:50:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2016-03-31 15:22:17 +00:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
cp -v ${bashCompletion}/completions/tmux $out/share/bash-completion/completions/tmux
|
2015-05-08 12:50:21 +00:00
|
|
|
'';
|
2014-08-19 15:03:49 +00:00
|
|
|
|
2010-11-28 12:38:35 +00:00
|
|
|
meta = {
|
2015-06-07 22:19:14 +00:00
|
|
|
homepage = http://tmux.github.io/;
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Terminal multiplexer";
|
2010-11-28 12:38:35 +00:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' tmux is intended to be a modern, BSD-licensed alternative to programs such as GNU screen. Major features include:
|
|
|
|
|
|
|
|
* A powerful, consistent, well-documented and easily scriptable command interface.
|
|
|
|
* A window may be split horizontally and vertically into panes.
|
|
|
|
* Panes can be freely moved and resized, or arranged into preset layouts.
|
|
|
|
* Support for UTF-8 and 256-colour terminals.
|
|
|
|
* Copy and paste with multiple buffers.
|
|
|
|
* 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.
|
2014-10-18 14:04:34 +00:00
|
|
|
* A clean, easily extended, BSD-licensed codebase, under active development.
|
2010-11-28 12:38:35 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-04-12 01:15:10 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ thammers fpletz ];
|
2010-11-28 12:38:35 +00:00
|
|
|
};
|
|
|
|
}
|