2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pam, openssl, openssh, shadow, makeWrapper }:
|
2013-12-07 05:13:35 +00:00
|
|
|
|
2015-06-28 10:34:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-28 15:41:29 +00:00
|
|
|
version = "2.20";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "shellinabox";
|
2013-12-07 05:13:35 +00:00
|
|
|
|
2015-08-07 06:31:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shellinabox";
|
|
|
|
repo = "shellinabox";
|
2016-12-28 15:41:29 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1hmfayh21cks2lyj572944ll0mmgsxbnj981b3hq3nhdg8ywzjfr";
|
2013-12-07 05:13:35 +00:00
|
|
|
};
|
2014-03-28 10:51:41 +00:00
|
|
|
|
|
|
|
patches = [ ./shellinabox-minus.patch ];
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ pam openssl openssh makeWrapper ];
|
2015-08-07 06:31:11 +00:00
|
|
|
|
2015-06-28 10:34:44 +00:00
|
|
|
# Disable GSSAPIAuthentication errors. Also, paths in certain source files are
|
|
|
|
# hardcoded. Replace the hardcoded paths with correct paths.
|
2013-12-07 05:13:35 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./shellinabox/service.c --replace "-oGSSAPIAuthentication=no" ""
|
|
|
|
substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin"
|
2014-03-28 10:51:41 +00:00
|
|
|
substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login"
|
|
|
|
substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login"
|
2016-02-01 18:46:16 +00:00
|
|
|
substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl.bin}/bin"
|
2015-06-28 10:34:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/shellinaboxd \
|
2016-01-24 07:30:05 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : ${openssl.out}/lib
|
2015-08-07 06:31:11 +00:00
|
|
|
mkdir -p $out/lib
|
|
|
|
cp shellinabox/* $out/lib
|
2015-06-28 10:34:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-10-26 23:44:19 +00:00
|
|
|
homepage = https://github.com/shellinabox/shellinabox;
|
2013-12-07 05:13:35 +00:00
|
|
|
description = "Web based AJAX terminal emulator";
|
2015-06-28 10:34:44 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ tomberek lihop ];
|
|
|
|
platforms = platforms.linux;
|
2013-12-07 05:13:35 +00:00
|
|
|
};
|
|
|
|
}
|