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

81 lines
2 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
, pkgconfig
, makeWrapper
, 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";
2020-10-30 12:16:00 +00:00
version = "3.1c";
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;
2020-10-30 12:16:00 +00:00
sha256 = "1fqgpzfas85dn0sxlvvg6rj488jwgnxs8d3gqcm8lgs211m9qhcf";
};
nativeBuildInputs = [
pkgconfig
autoreconfHook
bison
];
buildInputs = [
ncurses
libevent
makeWrapper
];
2015-05-08 12:50:21 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
];
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.
'';
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 ];
};
}