2020-06-13 23:40:04 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, libedit
|
|
|
|
, pkgconfig
|
|
|
|
, pam
|
|
|
|
, autoreconfHook
|
2009-10-01 13:07:33 +01:00
|
|
|
, etcDir ? null
|
2009-11-02 21:49:06 +00:00
|
|
|
, hpnSupport ? false
|
2018-01-28 21:34:04 +00:00
|
|
|
, withKerberos ? true
|
2016-03-08 20:14:25 +00:00
|
|
|
, withGssapiPatches ? false
|
2013-06-15 07:40:01 +01:00
|
|
|
, kerberos
|
2020-02-15 19:51:49 +00:00
|
|
|
, libfido2
|
2020-06-08 23:36:48 +01:00
|
|
|
, withFIDO ? stdenv.hostPlatform.isUnix && !stdenv.hostPlatform.isMusl
|
2020-06-13 23:40:04 +01:00
|
|
|
, linkOpenssl ? true
|
2006-12-11 03:24:35 +00:00
|
|
|
}:
|
2006-01-17 18:48:18 +00:00
|
|
|
|
2010-02-01 16:56:10 +00:00
|
|
|
let
|
2009-10-01 13:07:33 +01:00
|
|
|
|
2020-06-13 23:40:04 +01:00
|
|
|
version = "8.3p1";
|
|
|
|
|
2016-09-15 04:35:05 +01:00
|
|
|
# **please** update this patch when you update to a new openssh release.
|
2017-10-05 20:45:38 +01:00
|
|
|
gssapiPatch = fetchpatch {
|
2016-12-29 21:51:07 +00:00
|
|
|
name = "openssh-gssapi.patch";
|
2020-06-13 23:40:04 +01:00
|
|
|
url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-1/debian/patches/gssapi.patch";
|
|
|
|
sha256 = "0j22ccg6msyi88mpsb6x0il5cg8v2b7qdah57ninbwx5isyld80l";
|
2016-01-02 00:35:43 +00:00
|
|
|
};
|
|
|
|
|
2010-02-01 16:56:10 +00:00
|
|
|
in
|
2015-07-07 03:29:45 +01:00
|
|
|
with stdenv.lib;
|
2010-02-01 16:56:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openssh";
|
2020-06-13 23:40:04 +01:00
|
|
|
inherit version;
|
2006-12-11 03:24:35 +00:00
|
|
|
|
2017-03-17 16:20:48 +00:00
|
|
|
src = if hpnSupport then
|
|
|
|
fetchurl {
|
2020-06-13 23:40:04 +01:00
|
|
|
url = "https://github.com/rapier1/openssh-portable/archive/hpn-KitchenSink-${replaceStrings [ "." "p" ] [ "_" "_P" ] version}.tar.gz";
|
2020-09-20 08:20:30 +01:00
|
|
|
sha256 = "1ssdwgdxnvjwigisqi8c053znps5a4jf7bzsi99y0xyfzbw0x55k";
|
2017-03-17 16:20:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://openbsd/OpenSSH/portable/${pname}-${version}.tar.gz";
|
2020-06-13 23:40:04 +01:00
|
|
|
sha256 = "1cl74ghi9y21dc3f4xa0qamb7dhwacbynh1ks9syprrg8zhgpgpj";
|
2017-03-17 16:20:48 +00:00
|
|
|
};
|
2013-02-19 10:02:20 +00:00
|
|
|
|
2016-02-01 15:27:46 +00:00
|
|
|
patches =
|
2016-04-16 04:45:10 +01:00
|
|
|
[
|
|
|
|
./locale_archive.patch
|
2016-07-16 09:08:29 +01:00
|
|
|
|
|
|
|
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
|
|
|
|
./dont_create_privsep_path.patch
|
2019-01-13 20:26:05 +00:00
|
|
|
|
2019-08-22 19:58:33 +01:00
|
|
|
./ssh-keysign.patch
|
2020-02-16 18:27:56 +00:00
|
|
|
]
|
2018-01-28 21:34:04 +00:00
|
|
|
++ optional withGssapiPatches (assert withKerberos; gssapiPatch);
|
2010-05-19 13:26:06 +01:00
|
|
|
|
2017-06-07 08:33:26 +01: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'
|
|
|
|
'';
|
|
|
|
|
2020-01-03 23:03:25 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ optional (hpnSupport || withGssapiPatches) autoreconfHook;
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ zlib openssl libedit pam ]
|
2020-02-15 19:51:49 +00:00
|
|
|
++ optional withFIDO libfido2
|
2020-01-03 23:03:25 +00:00
|
|
|
++ optional withKerberos kerberos;
|
2010-02-01 16:56:10 +00:00
|
|
|
|
2017-07-19 14:44:55 +01: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 16:41:32 +01:00
|
|
|
# I set --disable-strip because later we strip anyway. And it fails to strip
|
|
|
|
# properly when cross building.
|
2015-07-07 03:29:45 +01:00
|
|
|
configureFlags = [
|
2016-03-06 04:56:32 +00:00
|
|
|
"--sbindir=\${out}/bin"
|
2015-07-07 03:29:45 +01:00
|
|
|
"--localstatedir=/var"
|
2015-12-27 22:02:44 +00:00
|
|
|
"--with-pid-dir=/run"
|
2015-07-07 03:29:45 +01:00
|
|
|
"--with-mantype=man"
|
|
|
|
"--with-libedit=yes"
|
|
|
|
"--disable-strip"
|
|
|
|
(if pam != null then "--with-pam" else "--without-pam")
|
|
|
|
] ++ optional (etcDir != null) "--sysconfdir=${etcDir}"
|
2020-02-15 19:51:49 +00:00
|
|
|
++ optional withFIDO "--with-security-key-builtin=yes"
|
2018-01-28 21:34:04 +00:00
|
|
|
++ optional withKerberos (assert kerberos != null; "--with-kerberos5=${kerberos}")
|
2016-03-06 21:36:55 +00:00
|
|
|
++ optional stdenv.isDarwin "--disable-libutil"
|
|
|
|
++ optional (!linkOpenssl) "--without-openssl";
|
2015-07-07 03:29:45 +01:00
|
|
|
|
2019-06-20 18:15:33 +01:00
|
|
|
buildFlags = [ "SSH_KEYSIGN=ssh-keysign" ];
|
|
|
|
|
2014-11-20 11:12:33 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningEnable = [ "pie" ];
|
2016-02-26 16:30:26 +00:00
|
|
|
|
2015-07-07 03:29:45 +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/
|
|
|
|
'';
|
2007-05-15 14:10:41 +01:00
|
|
|
|
2015-12-27 22:02:44 +00:00
|
|
|
installTargets = [ "install-nokeys" ];
|
2015-07-07 03:29:45 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc/ssh"
|
|
|
|
];
|
2010-02-01 16:56:10 +00:00
|
|
|
|
2015-07-07 03:29:45 +01:00
|
|
|
meta = {
|
2010-02-01 16:56:10 +00:00
|
|
|
description = "An implementation of the SSH protocol";
|
2020-06-13 23:40:04 +01:00
|
|
|
homepage = "https://www.openssh.com/";
|
|
|
|
changelog = "https://www.openssh.com/releasenotes.html";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2018-11-22 21:25:05 +00:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2016-10-20 19:49:08 +01:00
|
|
|
maintainers = with maintainers; [ eelco aneeshusa ];
|
2010-02-01 16:56:10 +00:00
|
|
|
};
|
2004-08-02 12:55:31 +01:00
|
|
|
}
|