2022-02-16 21:16:20 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, ncurses, utmp, pam ? null }:
|
2004-07-30 17:13:08 +01:00
|
|
|
|
2010-10-11 23:11:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "screen";
|
2022-02-03 18:28:54 +00:00
|
|
|
version = "4.9.0";
|
2010-10-11 23:11:54 +01:00
|
|
|
|
2004-07-30 17:13:08 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnu/screen/${pname}-${version}.tar.gz";
|
2022-02-03 18:28:54 +00:00
|
|
|
sha256 = "1x1hqy4h47i7hk85f779lkwkm7gkq8h8mxwd0znkh5adpf0m4czr";
|
2004-07-30 17:13:08 +01:00
|
|
|
};
|
|
|
|
|
2016-06-20 23:13:54 +01:00
|
|
|
configureFlags= [
|
|
|
|
"--enable-telnet"
|
|
|
|
"--enable-pam"
|
|
|
|
"--with-sys-screenrc=/etc/screenrc"
|
|
|
|
"--enable-colors256"
|
|
|
|
];
|
2015-10-06 14:46:05 +01:00
|
|
|
|
2022-02-03 18:28:54 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
] ++ lib.optional stdenv.isLinux pam
|
|
|
|
++ lib.optional stdenv.isDarwin utmp;
|
2021-11-30 09:04:12 +00:00
|
|
|
|
2010-10-11 23:11:54 +01:00
|
|
|
doCheck = true;
|
2010-10-07 14:14:05 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/screen/";
|
2014-12-15 18:50:00 +00:00
|
|
|
description = "A window manager that multiplexes a physical terminal";
|
2016-06-20 23:13:54 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2010-10-11 23:11:54 +01:00
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU Screen is a full-screen window manager that multiplexes a physical
|
|
|
|
terminal between several processes, typically interactive shells.
|
|
|
|
Each virtual terminal provides the functions of the DEC VT100
|
|
|
|
terminal and, in addition, several control functions from the ANSI
|
|
|
|
X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
|
|
|
|
and support for multiple character sets). There is a scrollback
|
|
|
|
history buffer for each virtual terminal and a copy-and-paste
|
|
|
|
mechanism that allows the user to move text regions between windows.
|
|
|
|
When screen is called, it creates a single window with a shell in it
|
|
|
|
(or the specified command) and then gets out of your way so that you
|
|
|
|
can use the program as you normally would. Then, at any time, you
|
|
|
|
can create new (full-screen) windows with other programs in them
|
|
|
|
(including more shells), kill the current window, view a list of the
|
|
|
|
active windows, turn output logging on and off, copy text between
|
|
|
|
windows, view the scrollback history, switch between windows, etc.
|
|
|
|
All windows run their programs completely independent of each other.
|
|
|
|
Programs continue to run when their window is currently not visible
|
|
|
|
and even when the whole screen session is detached from the users
|
|
|
|
terminal.
|
|
|
|
'';
|
|
|
|
|
2016-06-20 23:13:54 +01:00
|
|
|
platforms = platforms.unix;
|
2021-10-14 09:59:33 +01:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2010-10-07 14:14:05 +01:00
|
|
|
};
|
2004-07-30 17:13:08 +01:00
|
|
|
}
|