2010-05-19 05:26:06 -07:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
|
2009-10-01 05:07:33 -07:00
|
|
|
, etcDir ? null
|
2009-11-02 13:49:06 -08:00
|
|
|
, hpnSupport ? false
|
2006-12-10 19:24:35 -08:00
|
|
|
}:
|
2006-01-17 10:48:18 -08:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
let
|
2009-10-01 05:07:33 -07:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
hpnSrc = fetchurl {
|
|
|
|
url = http://www.psc.edu/networking/projects/hpn-ssh/openssh-5.3p1-hpn13v7.diff.gz;
|
|
|
|
sha256 = "1kqir6v14z77l0wn9j4jzdqsip5s1ky34w749psvbshbp9dzizn8";
|
2004-08-02 04:55:31 -07:00
|
|
|
};
|
2009-10-01 05:07:33 -07:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
in
|
2006-12-10 19:24:35 -08:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2010-04-22 11:16:18 -07:00
|
|
|
name = "openssh-5.5p1";
|
2006-12-10 19:24:35 -08:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
src = fetchurl {
|
2010-04-22 13:12:09 -07:00
|
|
|
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
2010-04-22 11:16:18 -07:00
|
|
|
sha256 = "12kywhjnz6w6kx5fk526fhs2xc7rf234hwrms9p1hqv6zrpdvvin";
|
2010-02-01 08:56:10 -08:00
|
|
|
};
|
2006-12-10 19:24:35 -08:00
|
|
|
|
2010-05-09 05:44:09 -07:00
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
2010-02-01 08:56:10 -08:00
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
|
|
|
'';
|
2010-05-09 05:44:09 -07:00
|
|
|
patches = [ ./locale_archive.patch ];
|
2010-05-19 05:26:06 -07:00
|
|
|
|
|
|
|
buildInputs = [ zlib openssl perl libedit pkgconfig pam ];
|
2010-02-01 08:56:10 -08:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-mantype=man
|
2010-04-22 11:16:18 -07:00
|
|
|
--with-libedit=yes
|
2010-05-19 05:26:06 -07:00
|
|
|
${if pam != null then "--with-pam" else "--without-pam"}
|
2010-02-01 08:56:10 -08:00
|
|
|
${if etcDir != null then "--sysconfdir=${etcDir}" else ""}
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-privsep-path=$out/empty"
|
|
|
|
ensureDir $out/empty
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Install ssh-copy-id, it's very useful.
|
|
|
|
cp contrib/ssh-copy-id $out/bin/
|
|
|
|
chmod +x $out/bin/ssh-copy-id
|
|
|
|
cp contrib/ssh-copy-id.1 $out/share/man/man1/
|
2010-02-01 09:04:07 -08:00
|
|
|
|
|
|
|
ensureDir $out/etc/ssh
|
|
|
|
cp moduli $out/etc/ssh/
|
2010-02-01 08:56:10 -08:00
|
|
|
'';
|
2007-05-15 06:10:41 -07:00
|
|
|
|
2009-10-01 06:06:41 -07:00
|
|
|
installTargets = "install-nosysconf";
|
2010-02-01 08:56:10 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.openssh.org/;
|
|
|
|
description = "An implementation of the SSH protocol";
|
|
|
|
license = "bsd";
|
|
|
|
};
|
2004-08-02 04:55:31 -07:00
|
|
|
}
|