2016-08-04 04:07:19 +02:00
|
|
|
{ stdenv, fetchurl, zlib, protobuf, ncurses, pkgconfig, IOTty
|
2016-04-04 15:11:00 +02:00
|
|
|
, makeWrapper, perl, openssl, autoreconfHook, fetchpatch }:
|
2012-04-16 23:44:12 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-20 15:37:36 +02:00
|
|
|
name = "mosh-1.2.5";
|
2012-04-16 23:44:12 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-18 13:17:26 +02:00
|
|
|
url = "http://mosh.mit.edu/${name}.tar.gz";
|
2015-09-20 15:37:36 +02:00
|
|
|
sha256 = "1qsb0y882yfgwnpy6f98pi5xqm6kykdsrxzvaal37hs7szjhky0s";
|
2012-04-16 23:44:12 +02:00
|
|
|
};
|
|
|
|
|
2016-08-04 04:07:19 +02:00
|
|
|
buildInputs = [ autoreconfHook protobuf ncurses zlib pkgconfig IOTty makeWrapper perl openssl ];
|
2016-04-04 15:11:00 +02:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# remove automake detection macro patch on next release as it is already on mosh master
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix_automake_detection_macro.patch";
|
|
|
|
url = "https://github.com/mobile-shell/mosh/commit/a47917b97606a03f6bbf0cafd1fcd495b0229790.patch";
|
|
|
|
sha256 = "0ib200ffvbnns125xd58947fyxdx31m06rmnzqmxpxcnjza7k404";
|
|
|
|
})
|
|
|
|
];
|
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 = {
|
|
|
|
homepage = http://mosh.mit.edu/;
|
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
|
|
|
};
|
|
|
|
}
|