2016-01-01 16:35:43 -08:00
|
|
|
{ stdenv, fetchurl, fetchpatch, zlib, openssl, perl, libedit, pkgconfig, pam
|
2009-10-01 05:07:33 -07:00
|
|
|
, etcDir ? null
|
2009-11-02 13:49:06 -08:00
|
|
|
, hpnSupport ? false
|
2013-06-14 23:40:01 -07:00
|
|
|
, withKerberos ? false
|
2016-01-01 16:35:43 -08:00
|
|
|
, withGssapiPatches ? withKerberos
|
2013-06-14 23:40:01 -07:00
|
|
|
, kerberos
|
2006-12-10 19:24:35 -08:00
|
|
|
}:
|
2006-01-17 10:48:18 -08:00
|
|
|
|
2013-06-14 23:40:01 -07:00
|
|
|
assert withKerberos -> kerberos != null;
|
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
let
|
2009-10-01 05:07:33 -07:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
hpnSrc = fetchurl {
|
2014-09-11 13:29:00 -07:00
|
|
|
url = mirror://sourceforge/hpnssh/openssh-6.6p1-hpnssh14v5.diff.gz;
|
|
|
|
sha256 = "682b4a6880d224ee0b7447241b684330b731018585f1ba519f46660c10d63950";
|
2004-08-02 04:55:31 -07:00
|
|
|
};
|
2009-10-01 05:07:33 -07:00
|
|
|
|
2016-01-01 16:35:43 -08:00
|
|
|
gssapiSrc = fetchpatch {
|
2016-02-19 14:54:00 -08:00
|
|
|
url = "http://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?h=debian/7.1p2-2";
|
|
|
|
sha256 = "05nsch879nlpyyiwm240wlq9rasy71j9d03j1rfi8kp865zhjfbm";
|
2016-01-01 16:35:43 -08:00
|
|
|
};
|
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
in
|
2015-07-06 19:29:45 -07:00
|
|
|
with stdenv.lib;
|
2010-02-01 08:56:10 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-01 09:14:33 -08:00
|
|
|
name = "openssh-7.2p1";
|
2006-12-10 19:24:35 -08:00
|
|
|
|
2010-02-01 08:56:10 -08:00
|
|
|
src = fetchurl {
|
2015-01-03 09:36:25 -08:00
|
|
|
url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz";
|
2016-03-01 09:14:33 -08:00
|
|
|
sha256 = "1hsa1f3641pdj57a55gmnvcya3wwww2fc2cvb77y95rm5xxw6g4p";
|
2010-02-01 08:56:10 -08:00
|
|
|
};
|
2006-12-10 19:24:35 -08:00
|
|
|
|
2015-07-06 19:29:45 -07:00
|
|
|
prePatch = optionalString hpnSupport
|
2010-02-01 08:56:10 -08:00
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
2011-04-13 13:44:17 -07:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
2010-02-01 08:56:10 -08:00
|
|
|
'';
|
2013-02-19 02:02:20 -08:00
|
|
|
|
2016-02-01 07:27:46 -08:00
|
|
|
patches =
|
2016-03-01 13:24:07 -08:00
|
|
|
[ ./locale_archive.patch ]
|
2016-01-01 16:35:43 -08:00
|
|
|
++ optional withGssapiPatches gssapiSrc;
|
2010-05-19 05:26:06 -07:00
|
|
|
|
2014-01-31 00:34:27 -08:00
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ]
|
2015-07-06 19:29:45 -07:00
|
|
|
++ optional withKerberos [ kerberos ];
|
2010-02-01 08:56:10 -08:00
|
|
|
|
2011-04-25 08:41:32 -07:00
|
|
|
# I set --disable-strip because later we strip anyway. And it fails to strip
|
|
|
|
# properly when cross building.
|
2015-07-06 19:29:45 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2015-12-27 14:02:44 -08:00
|
|
|
"--with-pid-dir=/run"
|
2015-07-06 19:29:45 -07:00
|
|
|
"--with-mantype=man"
|
|
|
|
"--with-libedit=yes"
|
|
|
|
"--disable-strip"
|
|
|
|
(if pam != null then "--with-pam" else "--without-pam")
|
|
|
|
] ++ optional (etcDir != null) "--sysconfdir=${etcDir}"
|
|
|
|
++ optional withKerberos "--with-kerberos5=${kerberos}"
|
|
|
|
++ optional stdenv.isDarwin "--disable-libutil";
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray+=("--with-privsep-path=$out/empty")
|
|
|
|
mkdir -p $out/empty
|
|
|
|
'';
|
2010-02-01 08:56:10 -08:00
|
|
|
|
2014-11-20 03:12:33 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-07-06 19:29:45 -07: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/
|
|
|
|
'';
|
2007-05-15 06:10:41 -07:00
|
|
|
|
2015-12-27 14:02:44 -08:00
|
|
|
installTargets = [ "install-nokeys" ];
|
2015-07-06 19:29:45 -07:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc/ssh"
|
|
|
|
];
|
2010-02-01 08:56:10 -08:00
|
|
|
|
2015-07-06 19:29:45 -07:00
|
|
|
meta = {
|
2014-01-31 00:34:27 -08:00
|
|
|
homepage = "http://www.openssh.org/";
|
2010-02-01 08:56:10 -08:00
|
|
|
description = "An implementation of the SSH protocol";
|
2014-11-05 16:44:33 -08:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2014-01-31 00:34:27 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ eelco ];
|
2014-11-26 16:19:24 -08:00
|
|
|
broken = hpnSupport; # probably after 6.7 update
|
2010-02-01 08:56:10 -08:00
|
|
|
};
|
2004-08-02 04:55:31 -07:00
|
|
|
}
|