2022-10-27 08:16:53 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, zlib, protobuf, ncurses, pkg-config
|
2022-04-06 13:14:50 +01:00
|
|
|
, makeWrapper, perl, openssl, autoreconfHook, openssh, bash-completion
|
2022-10-06 18:43:15 +01:00
|
|
|
, withUtempter ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, libutempter }:
|
2012-04-16 22:44:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-23 22:12:43 +00:00
|
|
|
pname = "mosh";
|
2022-10-27 08:16:53 +01:00
|
|
|
version = "1.4.0";
|
2012-04-16 22:44:12 +01:00
|
|
|
|
2022-10-27 08:16:53 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mobile-shell";
|
|
|
|
repo = pname;
|
|
|
|
rev = "mosh-${version}";
|
|
|
|
hash = "sha256-tlSsHu7JnXO+sorVuWWubNUNdb9X0/pCaiGG5Y0X/g8=";
|
2012-04-16 22:44:12 +01:00
|
|
|
};
|
|
|
|
|
2022-04-06 13:14:50 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf perl ];
|
|
|
|
buildInputs = [ protobuf ncurses zlib openssl bash-completion perl ]
|
2018-12-15 03:50:31 +00:00
|
|
|
++ lib.optional withUtempter libutempter;
|
2016-04-04 14:11:00 +01:00
|
|
|
|
2022-04-04 07:24:17 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
2020-03-18 22:57:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-04-29 13:55:56 +01:00
|
|
|
patches = [
|
|
|
|
./ssh_path.patch
|
2020-12-14 05:45:26 +00:00
|
|
|
./mosh-client_path.patch
|
2019-04-29 13:55:56 +01:00
|
|
|
./utempter_path.patch
|
2020-04-24 08:14:07 +01:00
|
|
|
# Fix build with bash-completion 2.10
|
|
|
|
./bash_completion_datadir.patch
|
2019-04-29 13:55:56 +01:00
|
|
|
];
|
2021-11-10 10:02:11 +00:00
|
|
|
|
2017-01-28 18:21:24 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace scripts/mosh.pl \
|
2021-11-10 10:02:11 +00:00
|
|
|
--subst-var-by ssh "${openssh}/bin/ssh" \
|
|
|
|
--subst-var-by mosh-client "$out/bin/mosh-client"
|
2017-01-28 18:21:24 +00:00
|
|
|
'';
|
|
|
|
|
2021-11-10 10:02:11 +00:00
|
|
|
configureFlags = [ "--enable-completion" ]
|
|
|
|
++ lib.optional withUtempter "--with-utempter";
|
2017-12-19 12:37:06 +00:00
|
|
|
|
2012-04-16 22:44:12 +01:00
|
|
|
postInstall = ''
|
2015-11-03 22:41:21 +00:00
|
|
|
wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB
|
2012-04-16 22:44:12 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
|
2018-09-29 22:26:07 +01:00
|
|
|
|
2021-02-12 03:26:10 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://mosh.org/";
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Mobile shell (ssh replacement)";
|
|
|
|
longDescription = ''
|
|
|
|
Remote terminal application that allows roaming, supports intermittent
|
|
|
|
connectivity, and provides intelligent local echo and line editing of
|
|
|
|
user keystrokes.
|
|
|
|
|
|
|
|
Mosh is a replacement for SSH. It's more robust and responsive,
|
|
|
|
especially over Wi-Fi, cellular, and long-distance links.
|
|
|
|
'';
|
2021-02-12 03:26:10 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2021-11-10 10:02:11 +00:00
|
|
|
maintainers = with maintainers; [ viric SuperSandro2000 ];
|
2021-02-12 03:26:10 +00:00
|
|
|
platforms = platforms.unix;
|
2012-04-16 22:44:12 +01:00
|
|
|
};
|
|
|
|
}
|