nixpkgs/pkgs/tools/misc/tmux/default.nix

90 lines
2.3 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv
, fetchFromGitHub
2021-06-22 10:49:55 +00:00
, fetchpatch
, autoreconfHook
2021-01-17 03:51:22 +00:00
, pkg-config
, bison
, ncurses
, libevent
}:
2016-04-12 01:15:10 +00:00
let
bashCompletion = fetchFromGitHub {
owner = "imomaliev";
2016-04-12 01:15:10 +00:00
repo = "tmux-bash-completion";
2020-10-30 04:20:00 +00:00
rev = "f5d53239f7658f8e8fbaf02535cc369009c436d6";
sha256 = "0sq2g3w0h3mkfa6qwqdw93chb5f1hgkz5vdl8yw8mxwdqwhsdprr";
2016-04-12 01:15:10 +00:00
};
in
stdenv.mkDerivation rec {
2019-04-25 02:12:25 +00:00
pname = "tmux";
2021-06-10 04:20:00 +00:00
version = "3.2a";
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";
2019-04-25 02:12:25 +00:00
rev = version;
2021-06-10 04:20:00 +00:00
sha256 = "0143ylfk7zsl3xmiasb768238gr582cfhsgv3p0h0f13bp8d6q09";
};
2021-06-22 10:49:55 +00:00
patches = [
# See https://github.com/tmux/tmux/pull/2755
(fetchpatch {
url = "https://github.com/tmux/tmux/commit/d0a2683120ec5a33163a14b0e1b39d208745968f.patch";
sha256 = "070knpncxfxi6k4q64jwi14ns5vm3606cf402h1c11cwnaa84n1g";
})
];
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
autoreconfHook
bison
];
buildInputs = [
ncurses
libevent
];
2015-05-08 12:50:21 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
];
2019-12-22 19:52:36 +00:00
enableParallelBuilding = true;
2015-05-08 12:50:21 +00:00
postInstall = ''
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
meta = {
2020-10-30 12:16:00 +00:00
homepage = "https://tmux.github.io/";
description = "Terminal multiplexer";
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.
* A clean, easily extended, BSD-licensed codebase, under active development.
'';
changelog = "https://github.com/tmux/tmux/raw/${version}/CHANGES";
2021-01-15 09:19:50 +00:00
license = lib.licenses.bsd3;
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ thammers fpletz ];
};
}