2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv
|
2019-11-30 10:08:07 +00:00
|
|
|
, fetchFromGitHub
|
2021-04-23 19:15:06 +01:00
|
|
|
, fetchpatch
|
2019-11-30 10:08:07 +00:00
|
|
|
, autoreconfHook
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config
|
2019-11-30 10:08:07 +00:00
|
|
|
, bison
|
|
|
|
, ncurses
|
|
|
|
, libevent
|
|
|
|
}:
|
2016-04-12 02:15:10 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
bashCompletion = fetchFromGitHub {
|
2016-11-23 03:52:46 +00:00
|
|
|
owner = "imomaliev";
|
2016-04-12 02:15:10 +01:00
|
|
|
repo = "tmux-bash-completion";
|
2020-10-30 04:20:00 +00:00
|
|
|
rev = "f5d53239f7658f8e8fbaf02535cc369009c436d6";
|
|
|
|
sha256 = "0sq2g3w0h3mkfa6qwqdw93chb5f1hgkz5vdl8yw8mxwdqwhsdprr";
|
2016-04-12 02:15:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2010-11-28 12:38:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-25 03:12:25 +01:00
|
|
|
pname = "tmux";
|
2021-04-13 05:20:00 +01:00
|
|
|
version = "3.2";
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2016-07-21 05:28:53 +01:00
|
|
|
outputs = [ "out" "man" ];
|
2016-06-11 09:18:26 +01:00
|
|
|
|
2016-04-12 02:15:10 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-11-30 10:08:07 +00:00
|
|
|
owner = "tmux";
|
|
|
|
repo = "tmux";
|
2019-04-25 03:12:25 +01:00
|
|
|
rev = version;
|
2021-04-13 05:20:00 +01:00
|
|
|
sha256 = "0alq81h1rz1f0zsy8qb2dvsl47axpa86j4bplngwkph0ksqqgr3p";
|
2010-11-28 12:38:35 +00:00
|
|
|
};
|
|
|
|
|
2021-04-23 19:15:06 +01:00
|
|
|
patches = [
|
|
|
|
# Fix cross-compilation
|
|
|
|
# https://github.com/tmux/tmux/pull/2651
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/tmux/tmux/commit/bb6242675ad0c7447daef148fffced882e5b4a61.patch";
|
|
|
|
sha256 = "1acr3xv3gqpq7qa2f8hw7c4f42hi444lfm1bz6wqj8f3yi320zjr";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-11-30 10:08:07 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:51:22 +00:00
|
|
|
pkg-config
|
2019-11-30 10:08:07 +00:00
|
|
|
autoreconfHook
|
|
|
|
bison
|
|
|
|
];
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2019-11-30 10:08:07 +00:00
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
libevent
|
|
|
|
];
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2015-05-08 13:50:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
2019-12-22 19:52:36 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-05-08 13:50:21 +01:00
|
|
|
postInstall = ''
|
2016-03-31 16:22:17 +01:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
cp -v ${bashCompletion}/completions/tmux $out/share/bash-completion/completions/tmux
|
2015-05-08 13:50:21 +01:00
|
|
|
'';
|
2014-08-19 16:03:49 +01:00
|
|
|
|
2010-11-28 12:38:35 +00:00
|
|
|
meta = {
|
2020-10-30 12:16:00 +00:00
|
|
|
homepage = "https://tmux.github.io/";
|
2014-08-24 15:21:08 +01: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 15:04:34 +01:00
|
|
|
* A clean, easily extended, BSD-licensed codebase, under active development.
|
2010-11-28 12:38:35 +00:00
|
|
|
'';
|
2021-04-13 05:20:00 +01:00
|
|
|
changelog = "https://github.com/tmux/tmux/raw/${version}/CHANGES";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2010-11-28 12:38:35 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ thammers fpletz ];
|
2010-11-28 12:38:35 +00:00
|
|
|
};
|
|
|
|
}
|