04163fcc81
so that hpn_openssh is not boken anymore
88 lines
2.4 KiB
Nix
88 lines
2.4 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.6p1-hpnssh14v5.diff.gz;
|
|
sha256 = "682b4a6880d224ee0b7447241b684330b731018585f1ba519f46660c10d63950";
|
|
};
|
|
optionalString = stdenv.lib.optionalString;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openssh-6.6p1";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.nluug.nl/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
|
sha256 = "1fq3w86q05y5nn6z878wm312k0svaprw8k007188fd259dkg1ha8";
|
|
};
|
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
|
''
|
|
gunzip -c ${hpnSrc} | patch -p1
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
|
'';
|
|
|
|
patches = [
|
|
./locale_archive.patch
|
|
(fetchurl {
|
|
name = "CVE-2014-2653.patch";
|
|
url = "http://anonscm.debian.org/gitweb/?p=pkg-ssh/openssh.git;a=blobdiff_plain;"
|
|
+ "f=sshconnect.c;h=324f5e0a396a4da9885d121bbbef87f6ccf2b149;"
|
|
+ "hp=87c3770c0fd5c7ff41227c45b4528985eaea54a6;hb=63d5fa28e16d96db6bac2dbe3fcecb65328f8966;"
|
|
+ "hpb=9cbb60f5e4932634db04c330c88abc49cc5567bd";
|
|
sha256 = "160c434igl2r8q4cavhdlwvnbqizx444sjrhg98f997pyhz524h9";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ]
|
|
++ stdenv.lib.optional withKerberos [ kerberos ];
|
|
|
|
# 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"}
|
|
${optionalString (etcDir != null) "--sysconfdir=${etcDir}"}
|
|
${optionalString withKerberos "--with-kerberos5=${kerberos}"}
|
|
'';
|
|
|
|
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 = with stdenv.lib; {
|
|
homepage = "http://www.openssh.org/";
|
|
description = "An implementation of the SSH protocol";
|
|
license = "bsd"; # multi BSD GPL-2
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ eelco ];
|
|
};
|
|
}
|