Merge pull request #8541 from lihop/fix-shellinabox

shellinabox: fix ssl/tls support
This commit is contained in:
Arseniy Seroka 2015-06-28 16:15:55 +03:00
commit 643d055058

View File

@ -1,29 +1,38 @@
{ stdenv, fetchurl, pam, openssl, openssh, shadow }: { stdenv, fetchurl, pam, openssl, openssh, shadow, makeWrapper }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "shellinabox-2.14"; version = "2.14";
name = "shellinabox-${version}";
src = fetchurl { src = fetchurl {
url = "https://shellinabox.googlecode.com/files/shellinabox-2.14.tar.gz"; url = "https://shellinabox.googlecode.com/files/shellinabox-${version}.tar.gz";
sha1 = "9e01f58c68cb53211b83d0f02e676e0d50deb781"; sha1 = "9e01f58c68cb53211b83d0f02e676e0d50deb781";
}; };
buildInputs = [pam openssl openssh]; buildInputs = [ pam openssl openssh makeWrapper ];
patches = [ ./shellinabox-minus.patch ]; patches = [ ./shellinabox-minus.patch ];
# Disable GSSAPIAuthentication errors as well as correct hardcoded path. Take /usr/games's place. # Disable GSSAPIAuthentication errors. Also, paths in certain source files are
# hardcoded. Replace the hardcoded paths with correct paths.
preConfigure = '' preConfigure = ''
substituteInPlace ./shellinabox/service.c --replace "-oGSSAPIAuthentication=no" "" substituteInPlace ./shellinabox/service.c --replace "-oGSSAPIAuthentication=no" ""
substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin" substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin"
substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login" substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login"
substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login" substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login"
''; substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl}/bin"
meta = { '';
postInstall = ''
wrapProgram $out/bin/shellinaboxd \
--prefix LD_LIBRARY_PATH : ${openssl}/lib
'';
meta = with stdenv.lib; {
homepage = https://code.google.com/p/shellinabox; homepage = https://code.google.com/p/shellinabox;
description = "Web based AJAX terminal emulator"; description = "Web based AJAX terminal emulator";
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
maintainers = [stdenv.lib.maintainers.tomberek]; maintainers = with maintainers; [ tomberek lihop ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }