2016-01-02 01:35:43 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, 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
|
2016-03-08 21:14:25 +01:00
|
|
|
, withGssapiPatches ? false
|
2013-06-15 08:40:01 +02:00
|
|
|
, kerberos
|
2016-03-06 22:36:55 +01:00
|
|
|
, linkOpenssl? true
|
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;
|
2016-03-08 21:14:25 +01:00
|
|
|
assert withGssapiPatches -> withKerberos;
|
2013-06-15 08:40:01 +02: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 {
|
2014-09-11 22:29:00 +02:00
|
|
|
url = mirror://sourceforge/hpnssh/openssh-6.6p1-hpnssh14v5.diff.gz;
|
|
|
|
sha256 = "682b4a6880d224ee0b7447241b684330b731018585f1ba519f46660c10d63950";
|
2004-08-02 13:55:31 +02:00
|
|
|
};
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2016-09-15 05:35:05 +02:00
|
|
|
# **please** update this patch when you update to a new openssh release.
|
2016-01-02 01:35:43 +01:00
|
|
|
gssapiSrc = fetchpatch {
|
2016-12-29 22:51:07 +01:00
|
|
|
name = "openssh-gssapi.patch";
|
|
|
|
url = "https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian"
|
|
|
|
+ "/patches/gssapi.patch?id=255b8554a50b5c75fca63f76b1ac837c0d4fb7aa";
|
|
|
|
sha256 = "0yg9iq7vb2fkvy36ar0jxk29pkw0h3dhv5vn8qncc3pgwx3617n2";
|
2016-01-02 01:35:43 +01:00
|
|
|
};
|
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
in
|
2015-07-07 04:29:45 +02:00
|
|
|
with stdenv.lib;
|
2010-02-01 17:56:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-08 21:14:25 +01:00
|
|
|
# Please ensure that openssh_with_kerberos still builds when
|
|
|
|
# bumping the version here!
|
2016-08-07 19:55:20 +02:00
|
|
|
name = "openssh-${version}";
|
2016-12-29 01:14:24 +01:00
|
|
|
version = "7.4p1";
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
src = fetchurl {
|
2015-01-03 18:36:25 +01:00
|
|
|
url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz";
|
2016-12-29 01:14:24 +01:00
|
|
|
sha256 = "1l8r3x4fr2kb6xm95s7kjdif1wp6f94d4kljh4qjj9109shw87qv";
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2015-07-07 04:29:45 +02:00
|
|
|
prePatch = 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
|
|
|
|
2016-02-01 16:27:46 +01:00
|
|
|
patches =
|
2016-04-16 05:45:10 +02:00
|
|
|
[
|
|
|
|
./locale_archive.patch
|
2016-04-01 15:52:59 +02:00
|
|
|
./fix-host-key-algorithms-plus.patch
|
2016-07-16 10:08:29 +02:00
|
|
|
|
|
|
|
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
|
|
|
|
./dont_create_privsep_path.patch
|
2016-04-01 15:52:59 +02:00
|
|
|
]
|
2016-01-02 01:35:43 +01:00
|
|
|
++ optional withGssapiPatches gssapiSrc;
|
2010-05-19 14:26:06 +02:00
|
|
|
|
2014-01-31 09:34:27 +01:00
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ]
|
2016-10-01 22:38:06 +02:00
|
|
|
++ 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.
|
2015-07-07 04:29:45 +02:00
|
|
|
configureFlags = [
|
2016-03-06 05:56:32 +01:00
|
|
|
"--sbindir=\${out}/bin"
|
2015-07-07 04:29:45 +02:00
|
|
|
"--localstatedir=/var"
|
2015-12-27 23:02:44 +01:00
|
|
|
"--with-pid-dir=/run"
|
2015-07-07 04:29:45 +02: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}"
|
2016-03-06 22:36:55 +01:00
|
|
|
++ optional stdenv.isDarwin "--disable-libutil"
|
|
|
|
++ optional (!linkOpenssl) "--without-openssl";
|
2015-07-07 04:29:45 +02:00
|
|
|
|
2014-11-20 12:12:33 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 17:30:26 +01:00
|
|
|
|
2015-07-07 04:29:45 +02: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 15:10:41 +02:00
|
|
|
|
2015-12-27 23:02:44 +01:00
|
|
|
installTargets = [ "install-nokeys" ];
|
2015-07-07 04:29:45 +02:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc/ssh"
|
|
|
|
];
|
2010-02-01 17:56:10 +01:00
|
|
|
|
2015-07-07 04:29:45 +02:00
|
|
|
meta = {
|
2016-03-11 00:40:00 +01:00
|
|
|
homepage = "http://www.openssh.com/";
|
2010-02-01 17:56:10 +01:00
|
|
|
description = "An implementation of the SSH protocol";
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2014-01-31 09:34:27 +01:00
|
|
|
platforms = platforms.unix;
|
2016-10-20 20:49:08 +02:00
|
|
|
maintainers = with maintainers; [ eelco aneeshusa ];
|
2014-11-27 01:19:24 +01:00
|
|
|
broken = hpnSupport; # probably after 6.7 update
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2004-08-02 13:55:31 +02:00
|
|
|
}
|