2010-05-19 14:26:06 +02:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
|
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
|
|
|
|
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 {
|
2011-04-13 22:24:06 +02:00
|
|
|
url = http://www.psc.edu/networking/projects/hpn-ssh/openssh-5.8p1-hpn13v11.diff.gz;
|
|
|
|
sha256 = "1xwx2m2sihpy57mwdnc9km3c72hxfdjyp5mmr1vcx2c8kp901db2";
|
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 {
|
2011-05-11 15:44:18 +02:00
|
|
|
name = "openssh-5.8p2";
|
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";
|
2011-05-11 15:44:18 +02:00
|
|
|
sha1 = "64798328d310e4f06c9f01228107520adbc8b3e5";
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-05-09 14:44:09 +02:00
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
2010-02-01 17:56:10 +01:00
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
2011-04-13 22:44:17 +02:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
2010-08-25 23:12:36 +02:00
|
|
|
|
2010-05-09 14:44:09 +02:00
|
|
|
patches = [ ./locale_archive.patch ];
|
2010-05-19 14:26:06 +02:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
buildNativeInptus = [ perl ];
|
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ];
|
2010-02-01 17:56:10 +01:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
# I set --disable-strip because later we strip anyway. And it fails to strip
|
|
|
|
# properly when cross building.
|
2010-02-01 17:56:10 +01:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-mantype=man
|
2010-04-22 20:16:18 +02:00
|
|
|
--with-libedit=yes
|
2011-04-25 17:41:32 +02:00
|
|
|
--disable-strip
|
2010-05-19 14:26:06 +02:00
|
|
|
${if pam != null then "--with-pam" else "--without-pam"}
|
2010-02-01 17:56:10 +01: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 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
|
|
|
}
|