2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv
|
2020-12-26 00:33:07 +01:00
|
|
|
, pkgs
|
2020-06-14 00:40:04 +02:00
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, zlib
|
|
|
|
, openssl
|
|
|
|
, libedit
|
2021-01-17 04:51:22 +01:00
|
|
|
, pkg-config
|
2020-06-14 00:40:04 +02:00
|
|
|
, pam
|
|
|
|
, autoreconfHook
|
2009-10-01 14:07:33 +02:00
|
|
|
, etcDir ? null
|
2009-11-02 22:49:06 +01:00
|
|
|
, hpnSupport ? false
|
2018-01-28 22:34:04 +01:00
|
|
|
, withKerberos ? true
|
2016-03-08 21:14:25 +01:00
|
|
|
, withGssapiPatches ? false
|
2013-06-15 08:40:01 +02:00
|
|
|
, kerberos
|
2020-02-15 20:51:49 +01:00
|
|
|
, libfido2
|
2020-06-09 00:36:48 +02:00
|
|
|
, withFIDO ? stdenv.hostPlatform.isUnix && !stdenv.hostPlatform.isMusl
|
2020-06-14 00:40:04 +02:00
|
|
|
, linkOpenssl ? true
|
2006-12-11 04:24:35 +01:00
|
|
|
}:
|
2006-01-17 19:48:18 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
let
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2020-10-07 17:08:52 +02:00
|
|
|
version = "8.4p1";
|
2020-06-14 00:40:04 +02:00
|
|
|
|
2016-09-15 05:35:05 +02:00
|
|
|
# **please** update this patch when you update to a new openssh release.
|
2017-10-05 21:45:38 +02:00
|
|
|
gssapiPatch = fetchpatch {
|
2016-12-29 22:51:07 +01:00
|
|
|
name = "openssh-gssapi.patch";
|
2020-10-07 17:08:52 +02:00
|
|
|
url = "https://salsa.debian.org/ssh-team/openssh/raw/debian/1%25${version}-2/debian/patches/gssapi.patch";
|
|
|
|
sha256 = "1z1ckzimlkm1dmr9f5fqjnjg28gsqcwx6xka0klak857548d2lp2";
|
2016-01-02 01:35:43 +01:00
|
|
|
};
|
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
in
|
2021-01-15 10:19:50 +01:00
|
|
|
with lib;
|
2010-02-01 17:56:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "openssh";
|
2020-06-14 00:40:04 +02:00
|
|
|
inherit version;
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2017-03-17 17:20:48 +01:00
|
|
|
src = if hpnSupport then
|
|
|
|
fetchurl {
|
2020-06-14 00:40:04 +02:00
|
|
|
url = "https://github.com/rapier1/openssh-portable/archive/hpn-KitchenSink-${replaceStrings [ "." "p" ] [ "_" "_P" ] version}.tar.gz";
|
2020-11-14 12:49:32 +01:00
|
|
|
sha256 = "1x2afjy1isslbg7qlvhhs4zhj2c8q2h1ljz0fc5b4h9pqcm9j540";
|
2017-03-17 17:20:48 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://openbsd/OpenSSH/portable/${pname}-${version}.tar.gz";
|
2020-10-07 17:08:52 +02:00
|
|
|
sha256 = "091b3pxdlj47scxx6kkf4agkx8c8sdacdxx8m1dw1cby80pd40as";
|
2017-03-17 17:20:48 +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-07-16 10:08:29 +02:00
|
|
|
|
|
|
|
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
|
|
|
|
./dont_create_privsep_path.patch
|
2019-01-13 21:26:05 +01:00
|
|
|
|
2019-08-22 20:58:33 +02:00
|
|
|
./ssh-keysign.patch
|
2020-11-19 09:15:23 +01:00
|
|
|
|
|
|
|
# See https://github.com/openssh/openssh-portable/pull/206
|
|
|
|
./ssh-copy-id-fix-eof.patch
|
2020-02-16 19:27:56 +01:00
|
|
|
]
|
2018-01-28 22:34:04 +01:00
|
|
|
++ optional withGssapiPatches (assert withKerberos; gssapiPatch);
|
2010-05-19 14:26:06 +02:00
|
|
|
|
2017-06-07 09:33:26 +02: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'
|
|
|
|
'';
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2020-10-18 06:00:00 +02:00
|
|
|
++ optional (hpnSupport || withGssapiPatches) autoreconfHook
|
2020-12-26 00:33:07 +01:00
|
|
|
++ optional withKerberos pkgs.kerberos.dev;
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ zlib openssl libedit pam ]
|
2020-02-15 20:51:49 +01:00
|
|
|
++ optional withFIDO libfido2
|
2020-01-04 00:03:25 +01:00
|
|
|
++ optional withKerberos kerberos;
|
2010-02-01 17:56:10 +01:00
|
|
|
|
2017-07-19 15:44:55 +02:00
|
|
|
preConfigure = ''
|
|
|
|
# Setting LD causes `configure' and `make' to disagree about which linker
|
|
|
|
# to use: `configure' wants `gcc', but `make' wants `ld'.
|
|
|
|
unset LD
|
2020-10-18 06:00:00 +02:00
|
|
|
''
|
|
|
|
# Upstream build system does not support static build, so we fall back
|
|
|
|
# on fragile patching of configure script.
|
|
|
|
#
|
2021-01-17 04:51:22 +01:00
|
|
|
# libedit is found by pkg-config, but without --static flag, required
|
2020-10-18 06:00:00 +02:00
|
|
|
# to get also transitive dependencies for static linkage, hence sed
|
|
|
|
# expression.
|
|
|
|
#
|
|
|
|
# Kerberos can be found either by krb5-config or by fall-back shell
|
|
|
|
# code in openssh's configure.ac. Neither of them support static
|
|
|
|
# build, but patching code for krb5-config is simpler, so to get it
|
|
|
|
# into PATH, kerberos.dev is added into buildInputs.
|
|
|
|
+ optionalString stdenv.hostPlatform.isStatic ''
|
|
|
|
sed -i "s,PKGCONFIG --libs,PKGCONFIG --libs --static,g" configure
|
|
|
|
sed -i 's#KRB5CONF --libs`#KRB5CONF --libs` -lkrb5support -lkeyutils#g' configure
|
|
|
|
sed -i 's#KRB5CONF --libs gssapi`#KRB5CONF --libs gssapi` -lkrb5support -lkeyutils#g' configure
|
2017-07-19 15:44:55 +02: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}"
|
2020-02-15 20:51:49 +01:00
|
|
|
++ optional withFIDO "--with-security-key-builtin=yes"
|
2018-01-28 22:34:04 +01:00
|
|
|
++ optional withKerberos (assert kerberos != null; "--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
|
|
|
|
2019-06-20 19:15:33 +02:00
|
|
|
buildFlags = [ "SSH_KEYSIGN=ssh-keysign" ];
|
|
|
|
|
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 = {
|
2010-02-01 17:56:10 +01:00
|
|
|
description = "An implementation of the SSH protocol";
|
2020-06-14 00:40:04 +02:00
|
|
|
homepage = "https://www.openssh.com/";
|
|
|
|
changelog = "https://www.openssh.com/releasenotes.html";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.bsd2;
|
2018-11-22 22:25:05 +01:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2016-10-20 20:49:08 +02:00
|
|
|
maintainers = with maintainers; [ eelco aneeshusa ];
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2004-08-02 13:55:31 +02:00
|
|
|
}
|