2016-08-04 04:07:19 +02:00
|
|
|
{ stdenv, fetchurl, zlib, protobuf, ncurses, pkgconfig, IOTty
|
2017-01-28 19:21:24 +01:00
|
|
|
, makeWrapper, perl, openssl, autoreconfHook, openssh }:
|
2012-04-16 23:44:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-30 17:30:03 +02:00
|
|
|
name = "mosh-1.3.2";
|
2012-04-16 23:44:12 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-23 16:49:57 +02:00
|
|
|
url = "https://mosh.org/${name}.tar.gz";
|
2017-07-30 17:30:03 +02:00
|
|
|
sha256 = "05hjhlp6lk8yjcy59zywpf0r6s0h0b9zxq0lw66dh9x8vxrhaq6s";
|
2012-04-16 23:44:12 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ protobuf ncurses zlib IOTty makeWrapper perl openssl ];
|
2016-04-04 15:11:00 +02:00
|
|
|
|
2017-01-28 19:21:24 +01:00
|
|
|
patches = [ ./ssh_path.patch ];
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace scripts/mosh.pl \
|
|
|
|
--subst-var-by ssh "${openssh}/bin/ssh"
|
|
|
|
'';
|
|
|
|
|
2012-04-16 23:44:12 +02:00
|
|
|
postInstall = ''
|
2015-11-03 23:41:21 +01:00
|
|
|
wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB
|
2012-04-16 23:44:12 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-08-23 16:49:57 +02:00
|
|
|
homepage = https://mosh.org/;
|
2013-10-06 11:49:53 +02: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 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2012-04-16 23:44:12 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2014-04-12 18:37:45 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-04-16 23:44:12 +02:00
|
|
|
};
|
|
|
|
}
|