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
|
2013-06-15 08:40:01 +02:00
|
|
|
, withKerberos ? false
|
|
|
|
, kerberos
|
2006-12-11 04:24:35 +01:00
|
|
|
}:
|
2006-01-17 19:48:18 +01:00
|
|
|
|
2013-06-15 08:40:01 +02:00
|
|
|
assert withKerberos -> kerberos != null;
|
|
|
|
|
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 {
|
2013-12-29 17:50:16 +01:00
|
|
|
url = mirror://sourceforge/hpnssh/openssh-6.3p1-hpnssh14v2.diff.gz;
|
|
|
|
sha256 = "1jldqjwry9qpxxzb3mikfmmmv90mfb7xkmcfdbvwqac6nl3r7bi3";
|
2004-08-02 13:55:31 +02:00
|
|
|
};
|
2014-01-31 09:34:27 +01:00
|
|
|
optionalString = stdenv.lib.optionalString;
|
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 {
|
2014-03-20 12:37:25 +01:00
|
|
|
name = "openssh-6.6p1";
|
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";
|
2014-03-20 12:37:25 +01:00
|
|
|
sha256 = "1fq3w86q05y5nn6z878wm312k0svaprw8k007188fd259dkg1ha8";
|
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
|
|
|
'';
|
2013-02-19 11:02:20 +01:00
|
|
|
|
2013-12-29 17:50:16 +01:00
|
|
|
patches = [ ./locale_archive.patch ];
|
2010-05-19 14:26:06 +02:00
|
|
|
|
2014-01-31 09:34:27 +01:00
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ]
|
|
|
|
++ stdenv.lib.optional withKerberos [ kerberos ];
|
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"}
|
2014-01-31 09:34:27 +01:00
|
|
|
${optionalString (etcDir != null) "--sysconfdir=${etcDir}"}
|
|
|
|
${optionalString withKerberos "--with-kerberos5=${kerberos}"}
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-privsep-path=$out/empty"
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/empty
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
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
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/etc/ssh
|
2010-02-01 18:04:07 +01:00
|
|
|
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
|
|
|
|
2014-01-31 09:34:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://www.openssh.org/";
|
2010-02-01 17:56:10 +01:00
|
|
|
description = "An implementation of the SSH protocol";
|
|
|
|
license = "bsd";
|
2014-01-31 09:34:27 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ eelco ];
|
2014-02-01 09:07:16 +01:00
|
|
|
broken = hpnSupport; # cf. https://github.com/NixOS/nixpkgs/pull/1640
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2004-08-02 13:55:31 +02:00
|
|
|
}
|