2010-04-22 20:16:18 +02:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig
|
2006-12-11 04:24:35 +01:00
|
|
|
, pamSupport ? false, pam ? null
|
2009-10-01 14:07:33 +02:00
|
|
|
, etcDir ? null
|
2009-11-02 22:49:06 +01:00
|
|
|
, hpnSupport ? false
|
2006-12-11 04:24:35 +01:00
|
|
|
}:
|
2006-01-17 19:48:18 +01:00
|
|
|
|
2006-12-11 04:24:35 +01:00
|
|
|
assert pamSupport -> pam != null;
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
let
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
hpnSrc = fetchurl {
|
|
|
|
url = http://www.psc.edu/networking/projects/hpn-ssh/openssh-5.3p1-hpn13v7.diff.gz;
|
|
|
|
sha256 = "1kqir6v14z77l0wn9j4jzdqsip5s1ky34w749psvbshbp9dzizn8";
|
2004-08-02 13:55:31 +02:00
|
|
|
};
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
in
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-04-22 20:16:18 +02:00
|
|
|
name = "openssh-5.5p1";
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
src = fetchurl {
|
2010-04-22 22:12:09 +02:00
|
|
|
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
2010-04-22 20:16:18 +02:00
|
|
|
sha256 = "12kywhjnz6w6kx5fk526fhs2xc7rf234hwrms9p1hqv6zrpdvvin";
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
patchPhase = stdenv.lib.optionalString hpnSupport
|
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs =
|
2010-04-22 20:16:18 +02:00
|
|
|
[ zlib openssl perl libedit pkgconfig ]
|
2010-02-01 17:56:10 +01:00
|
|
|
++ stdenv.lib.optional pamSupport pam;
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-mantype=man
|
2010-04-22 20:16:18 +02:00
|
|
|
--with-libedit=yes
|
2010-02-01 17:56:10 +01:00
|
|
|
${if pamSupport then "--with-pam" else "--without-pam"}
|
|
|
|
${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 18:04:07 +01:00
|
|
|
|
|
|
|
ensureDir $out/etc/ssh
|
|
|
|
cp moduli $out/etc/ssh/
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
2007-05-15 15:10:41 +02:00
|
|
|
|
2009-10-01 15:06:41 +02:00
|
|
|
installTargets = "install-nosysconf";
|
2010-02-01 17:56:10 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.openssh.org/;
|
|
|
|
description = "An implementation of the SSH protocol";
|
|
|
|
license = "bsd";
|
|
|
|
};
|
2004-08-02 13:55:31 +02:00
|
|
|
}
|