3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/tmux/default.nix

81 lines
2 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, autoreconfHook
, pkgconfig
, makeWrapper
, bison
, ncurses
, libevent
}:
2016-04-12 02:15:10 +01:00
let
bashCompletion = fetchFromGitHub {
owner = "imomaliev";
2016-04-12 02:15:10 +01:00
repo = "tmux-bash-completion";
rev = "fcda450d452f07d36d2f9f27e7e863ba5241200d";
sha256 = "092jpkhggjqspmknw7h3icm0154rg21mkhbc71j5bxfmfjdxmya8";
2016-04-12 02:15:10 +01:00
};
in
stdenv.mkDerivation rec {
2019-04-25 03:12:25 +01:00
pname = "tmux";
2019-12-11 16:23:46 +00:00
version = "3.0a";
outputs = [ "out" "man" ];
2016-06-11 09:18:26 +01:00
2016-04-12 02:15:10 +01:00
src = fetchFromGitHub {
owner = "tmux";
repo = "tmux";
2019-04-25 03:12:25 +01:00
rev = version;
2019-12-11 16:23:46 +00:00
sha256 = "0y9lv1yr0x50v3k70vzkc8hfr7yijlsi30p7dr7i8akp3lwmmc7h";
};
nativeBuildInputs = [
pkgconfig
autoreconfHook
bison
];
buildInputs = [
ncurses
libevent
makeWrapper
];
2015-05-08 13:50:21 +01: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 13:50:21 +01:00
'';
2014-08-19 16:03:49 +01:00
meta = {
homepage = "http://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.
'';
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
2016-04-12 02:15:10 +01:00
maintainers = with stdenv.lib.maintainers; [ thammers fpletz ];
};
}