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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

91 lines
2.6 KiB
Nix
Raw Normal View History

2022-06-01 12:59:49 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, bison
, libevent
2022-06-01 12:59:49 +00:00
, ncurses
, pkg-config
, withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd
, withUtf8proc ? true, utf8proc # gets Unicode updates faster than glibc
, withUtempter ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, libutempter
}:
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";
2022-06-09 18:03:22 +00:00
version = "3.3a";
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;
2022-06-09 18:03:22 +00:00
sha256 = "sha256-SygHxTe7N4y7SdzKixPFQvqRRL57Fm8zWYHfTpW+yVY=";
};
patches = [
./CVE-2022-47016.patch
];
nativeBuildInputs = [
2021-01-17 03:51:22 +00:00
pkg-config
autoreconfHook
bison
];
buildInputs = [
ncurses
libevent
2022-06-24 01:10:36 +00:00
] ++ lib.optionals withSystemd [ systemd ]
++ lib.optionals withUtf8proc [ utf8proc ]
++ lib.optionals withUtempter [ libutempter ];
2015-05-08 12:50:21 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
2022-06-24 01:10:36 +00:00
] ++ lib.optionals withSystemd [ "--enable-systemd" ]
++ lib.optionals withUtempter [ "--enable-utempter" ]
++ lib.optionals withUtf8proc [ "--enable-utf8proc" ];
2015-05-08 12:50:21 +00:00
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";
2022-06-01 12:59:49 +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.
* 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;
platforms = lib.platforms.unix;
2022-10-04 20:38:54 +00:00
maintainers = with lib.maintainers; [ thammers fpletz SuperSandro2000 srapenne ];
};
}