1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/tools/networking/mosh/default.nix
2015-11-03 14:32:14 -08:00

43 lines
1.4 KiB
Nix

{ stdenv, fetchurl, zlib, boost, protobuf, ncurses, pkgconfig, IOTty
, makeWrapper, perl, openssl, autoreconfHook }:
stdenv.mkDerivation rec {
name = "mosh-1.2.5";
src = fetchurl {
url = "http://mosh.mit.edu/${name}.tar.gz";
sha256 = "1qsb0y882yfgwnpy6f98pi5xqm6kykdsrxzvaal37hs7szjhky0s";
};
buildInputs = [
boost protobuf ncurses zlib pkgconfig IOTty makeWrapper perl openssl
] ++ stdenv.lib.optional stdenv.isDarwin autoreconfHook;
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
# look for forkpty in libSystem, not libutil
substituteInPlace configure.ac \
--replace '[util]' '[System]' \
--replace 'LIBUTIL="-lutil"' 'LIBUTIL="-lSystem"'
'';
postInstall = ''
wrapProgram $out/bin/mosh --prefix PERL5LIB : $PERL5LIB
'';
meta = {
homepage = http://mosh.mit.edu/;
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.
'';
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = stdenv.lib.platforms.unix;
};
}