2023-04-25 20:20:36 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, ncurses
|
|
|
|
, libxcrypt
|
|
|
|
, utmp
|
|
|
|
, pam ? null
|
|
|
|
}:
|
2004-07-30 16:13:08 +00:00
|
|
|
|
2010-10-11 22:11:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "screen";
|
2023-08-21 07:52:02 +00:00
|
|
|
version = "4.9.1";
|
2010-10-11 22:11:54 +00:00
|
|
|
|
2004-07-30 16:13:08 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://gnu/screen/${pname}-${version}.tar.gz";
|
2023-08-21 07:52:02 +00:00
|
|
|
hash = "sha256-Js7z48QlccDUhK1vrxEMXBUJH7+HKwb6eqR2bHQFrGk=";
|
2004-07-30 16:13:08 +00:00
|
|
|
};
|
|
|
|
|
2023-08-21 07:52:02 +00:00
|
|
|
configureFlags = [
|
2016-06-20 22:13:54 +00:00
|
|
|
"--enable-telnet"
|
|
|
|
"--enable-pam"
|
|
|
|
"--with-sys-screenrc=/etc/screenrc"
|
|
|
|
"--enable-colors256"
|
2022-09-01 16:22:56 +00:00
|
|
|
"--enable-rxvt_osc"
|
2016-06-20 22:13:54 +00:00
|
|
|
];
|
2015-10-06 13:46:05 +00:00
|
|
|
|
2022-02-03 18:28:54 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
2022-09-27 10:33:59 +00:00
|
|
|
libxcrypt
|
2022-02-03 18:28:54 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux pam
|
|
|
|
++ lib.optional stdenv.isDarwin utmp;
|
2021-11-30 09:04:12 +00:00
|
|
|
|
2010-10-11 22:11:54 +00:00
|
|
|
doCheck = true;
|
2010-10-07 13:14:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00: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 22:13:54 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2010-10-11 22:11:54 +00: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 22:13:54 +00:00
|
|
|
platforms = platforms.unix;
|
2021-10-14 08:59:33 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2010-10-07 13:14:05 +00:00
|
|
|
};
|
2004-07-30 16:13:08 +00:00
|
|
|
}
|