2016-08-04 03:07:19 +01:00
|
|
|
{ stdenv, fetchurl, zlib, protobuf, ncurses, pkgconfig, IOTty
|
2017-01-28 18:21:24 +00:00
|
|
|
, makeWrapper, perl, openssl, autoreconfHook, openssh }:
|
2012-04-16 22:44:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-05-03 00:38:44 +01:00
|
|
|
name = "mosh-1.3.0";
|
2012-04-16 22:44:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-23 15:49:57 +01:00
|
|
|
url = "https://mosh.org/${name}.tar.gz";
|
2017-05-03 00:38:44 +01:00
|
|
|
sha256 = "0xikz40q873g9ihvz3x6bwkcb9hb8kcnp5wpcmb72pg5c7s143ij";
|
2012-04-16 22:44:12 +01:00
|
|
|
};
|
|
|
|
|
2016-08-04 03:07:19 +01:00
|
|
|
buildInputs = [ autoreconfHook protobuf ncurses zlib pkgconfig IOTty makeWrapper perl openssl ];
|
2016-04-04 14:11:00 +01:00
|
|
|
|
2017-01-28 18:21:24 +00:00
|
|
|
patches = [ ./ssh_path.patch ];
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace scripts/mosh.pl \
|
|
|
|
--subst-var-by ssh "${openssh}/bin/ssh"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-08-23 15:49:57 +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.
|
|
|
|
'';
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2012-04-16 22:44:12 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2014-04-12 17:37:45 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-04-16 22:44:12 +01:00
|
|
|
};
|
|
|
|
}
|