2017-03-17 19:20:48 +03:00
|
|
|
{ stdenv, fetchurl, fetchpatch, zlib, openssl, perl, libedit, pkgconfig, pam, autoreconfHook
|
2009-10-01 16:07:33 +04:00
|
|
|
, etcDir ? null
|
2009-11-03 00:49:06 +03:00
|
|
|
, hpnSupport ? false
|
2013-06-15 10:40:01 +04:00
|
|
|
, withKerberos ? false
|
2016-03-08 23:14:25 +03:00
|
|
|
, withGssapiPatches ? false
|
2013-06-15 10:40:01 +04:00
|
|
|
, kerberos
|
2016-03-07 00:36:55 +03:00
|
|
|
, linkOpenssl? true
|
2006-12-11 06:24:35 +03:00
|
|
|
}:
|
2006-01-17 21:48:18 +03:00
|
|
|
|
2013-06-15 10:40:01 +04:00
|
|
|
assert withKerberos -> kerberos != null;
|
2016-03-08 23:14:25 +03:00
|
|
|
assert withGssapiPatches -> withKerberos;
|
2013-06-15 10:40:01 +04:00
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
let
|
2009-10-01 16:07:33 +04:00
|
|
|
|
2016-09-15 06:35:05 +03:00
|
|
|
# **please** update this patch when you update to a new openssh release.
|
2016-01-02 03:35:43 +03:00
|
|
|
gssapiSrc = fetchpatch {
|
2016-12-30 00:51:07 +03:00
|
|
|
name = "openssh-gssapi.patch";
|
|
|
|
url = "https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian"
|
2017-03-21 23:49:17 +03:00
|
|
|
+ "/patches/gssapi.patch?id=a18d56bd84f04292ec9178b4b17ef6d56a0c7aef";
|
|
|
|
sha256 = "1sb929lfc3s45km2vpylmlbb6mpqcbr74xl6gx2s4cgnsrfd9kp3";
|
2016-01-02 03:35:43 +03:00
|
|
|
};
|
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
in
|
2015-07-07 05:29:45 +03:00
|
|
|
with stdenv.lib;
|
2010-02-01 19:56:10 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-08 23:14:25 +03:00
|
|
|
# Please ensure that openssh_with_kerberos still builds when
|
|
|
|
# bumping the version here!
|
2016-08-07 20:55:20 +03:00
|
|
|
name = "openssh-${version}";
|
2017-03-21 23:49:17 +03:00
|
|
|
version = "7.5p1";
|
2006-12-11 06:24:35 +03:00
|
|
|
|
2017-03-17 19:20:48 +03:00
|
|
|
src = if hpnSupport then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://github.com/rapier1/openssh-portable/archive/hpn-KitchenSink-7_5_P1.tar.gz";
|
|
|
|
sha256 = "1hasdcfjl6xf5nbbbvqyyq5v7ad10nywrq89j7naxz9wln58nhnn";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
|
|
|
url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz";
|
|
|
|
sha256 = "1w7rb5gbrikxdkp8w7zxnci4549gk4bw1lml01s59w5rzb2y6ilq";
|
|
|
|
};
|
2013-02-19 14:02:20 +04:00
|
|
|
|
2016-02-01 18:27:46 +03:00
|
|
|
patches =
|
2016-04-16 06:45:10 +03:00
|
|
|
[
|
|
|
|
./locale_archive.patch
|
2016-04-01 16:52:59 +03:00
|
|
|
./fix-host-key-algorithms-plus.patch
|
2016-07-16 11:08:29 +03:00
|
|
|
|
|
|
|
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
|
|
|
|
./dont_create_privsep_path.patch
|
2016-04-01 16:52:59 +03:00
|
|
|
]
|
2016-01-02 03:35:43 +03:00
|
|
|
++ optional withGssapiPatches gssapiSrc;
|
2010-05-19 16:26:06 +04:00
|
|
|
|
2017-06-07 10:33:26 +03:00
|
|
|
postPatch =
|
|
|
|
# On Hydra this makes installation fail (sometimes?),
|
|
|
|
# and nix store doesn't allow such fancy permission bits anyway.
|
|
|
|
''
|
|
|
|
substituteInPlace Makefile.in --replace '$(INSTALL) -m 4711' '$(INSTALL) -m 0711'
|
|
|
|
'';
|
|
|
|
|
2014-01-31 12:34:27 +04:00
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ]
|
2017-03-17 19:20:48 +03:00
|
|
|
++ optional withKerberos kerberos
|
|
|
|
++ optional hpnSupport autoreconfHook;
|
2010-02-01 19:56:10 +03:00
|
|
|
|
2017-07-19 16:44:55 +03:00
|
|
|
preConfigure = ''
|
|
|
|
# Setting LD causes `configure' and `make' to disagree about which linker
|
|
|
|
# to use: `configure' wants `gcc', but `make' wants `ld'.
|
|
|
|
unset LD
|
|
|
|
'';
|
|
|
|
|
2011-04-25 19:41:32 +04:00
|
|
|
# I set --disable-strip because later we strip anyway. And it fails to strip
|
|
|
|
# properly when cross building.
|
2015-07-07 05:29:45 +03:00
|
|
|
configureFlags = [
|
2016-03-06 07:56:32 +03:00
|
|
|
"--sbindir=\${out}/bin"
|
2015-07-07 05:29:45 +03:00
|
|
|
"--localstatedir=/var"
|
2015-12-28 01:02:44 +03:00
|
|
|
"--with-pid-dir=/run"
|
2015-07-07 05:29:45 +03: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-07 00:36:55 +03:00
|
|
|
++ optional stdenv.isDarwin "--disable-libutil"
|
|
|
|
++ optional (!linkOpenssl) "--without-openssl";
|
2015-07-07 05:29:45 +03:00
|
|
|
|
2014-11-20 14:12:33 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 20:38:15 +03:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 19:30:26 +03:00
|
|
|
|
2015-07-07 05:29:45 +03: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 17:10:41 +04:00
|
|
|
|
2015-12-28 01:02:44 +03:00
|
|
|
installTargets = [ "install-nokeys" ];
|
2015-07-07 05:29:45 +03:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc/ssh"
|
|
|
|
];
|
2010-02-01 19:56:10 +03:00
|
|
|
|
2015-07-07 05:29:45 +03:00
|
|
|
meta = {
|
2016-03-11 02:40:00 +03:00
|
|
|
homepage = "http://www.openssh.com/";
|
2010-02-01 19:56:10 +03:00
|
|
|
description = "An implementation of the SSH protocol";
|
2014-11-06 03:44:33 +03:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2014-01-31 12:34:27 +04:00
|
|
|
platforms = platforms.unix;
|
2016-10-20 21:49:08 +03:00
|
|
|
maintainers = with maintainers; [ eelco aneeshusa ];
|
2010-02-01 19:56:10 +03:00
|
|
|
};
|
2004-08-02 15:55:31 +04:00
|
|
|
}
|