c4e03f0739
This patch also bumps up the HPN version of openssh so that it compiles on top of 6.4. Along with the bump, a package was added for the high performance networking version. The gcmrekey patch was removed as this vulnerability is fixed in version 6.4 onward. http://www.openssh.org/txt/gcmrekey.adv
78 lines
1.9 KiB
Nix
78 lines
1.9 KiB
Nix
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
|
|
, etcDir ? null
|
|
, hpnSupport ? false
|
|
, withKerberos ? false
|
|
, kerberos
|
|
}:
|
|
|
|
assert withKerberos -> kerberos != null;
|
|
|
|
let
|
|
|
|
hpnSrc = fetchurl {
|
|
url = mirror://sourceforge/hpnssh/openssh-6.3p1-hpnssh14v2.diff.gz;
|
|
sha256 = "1jldqjwry9qpxxzb3mikfmmmv90mfb7xkmcfdbvwqac6nl3r7bi3";
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openssh-6.4p1";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
|
sha256 = "1lkmi7v83qvpcc04qrrqk4k7mafnmwxkfk1ccsisw51va4bgcc2m";
|
|
};
|
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
|
''
|
|
gunzip -c ${hpnSrc} | patch -p1
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
|
'';
|
|
|
|
patches = [ ./locale_archive.patch ];
|
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ] ++
|
|
(if withKerberos then [ kerberos ] else [])
|
|
;
|
|
|
|
# I set --disable-strip because later we strip anyway. And it fails to strip
|
|
# properly when cross building.
|
|
configureFlags =
|
|
''
|
|
--with-mantype=man
|
|
--with-libedit=yes
|
|
--disable-strip
|
|
${if pam != null then "--with-pam" else "--without-pam"}
|
|
${if etcDir != null then "--sysconfdir=${etcDir}" else ""}
|
|
${if withKerberos then "--with-kerberos5=${kerberos}" else ""}
|
|
'';
|
|
|
|
preConfigure =
|
|
''
|
|
configureFlags="$configureFlags --with-privsep-path=$out/empty"
|
|
mkdir -p $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/
|
|
|
|
mkdir -p $out/etc/ssh
|
|
cp moduli $out/etc/ssh/
|
|
'';
|
|
|
|
installTargets = "install-nosysconf";
|
|
|
|
meta = {
|
|
homepage = http://www.openssh.org/;
|
|
description = "An implementation of the SSH protocol";
|
|
license = "bsd";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = stdenv.lib.maintainers.eelco;
|
|
};
|
|
}
|