1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/mosh/default.nix

34 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, boost, protobuf, ncurses, pkgconfig, IOTty
2013-05-18 12:17:26 +01:00
, makeWrapper, perl, openssl }:
stdenv.mkDerivation rec {
2013-05-18 12:17:26 +01:00
name = "mosh-1.2.4";
src = fetchurl {
2013-05-18 12:17:26 +01:00
url = "http://mosh.mit.edu/${name}.tar.gz";
sha256 = "0inzfmqrab3n97m7rrmhd4xh3hjz0xva2sfl5m06w11668r0skg7";
};
2013-05-18 12:17:26 +01:00
buildInputs = [ boost protobuf ncurses zlib pkgconfig IOTty makeWrapper perl openssl ];
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;
};
}