nixpkgs/pkgs/tools/networking/openssh/default.nix

99 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, zlib, openssl, perl, libedit, pkgconfig, pam
, etcDir ? null
, hpnSupport ? false
2013-06-15 06:40:01 +00:00
, withKerberos ? false
, withGssapiPatches ? false
2013-06-15 06:40:01 +00:00
, kerberos
, linkOpenssl? true
}:
2013-06-15 06:40:01 +00:00
assert withKerberos -> kerberos != null;
assert withGssapiPatches -> withKerberos;
2013-06-15 06:40:01 +00:00
let
hpnSrc = fetchurl {
url = mirror://sourceforge/hpnssh/openssh-6.6p1-hpnssh14v5.diff.gz;
sha256 = "682b4a6880d224ee0b7447241b684330b731018585f1ba519f46660c10d63950";
};
# **please** update this patch when you update to a new openssh release.
gssapiSrc = fetchpatch {
url = "https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?id=477bb7636238c106f8cd7c868a8c0c5eabcfb3db";
sha256 = "1kcx2rw6z7y591vr60ww2m2civ0cx6f6awdpi66p1sric9b65si3";
};
in
with stdenv.lib;
stdenv.mkDerivation rec {
# Please ensure that openssh_with_kerberos still builds when
# bumping the version here!
name = "openssh-${version}";
version = "7.3p1";
src = fetchurl {
url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz";
sha256 = "1k5y1wi29d47cgizbryxrhc1fbjsba2x8l5mqfa9b9nadnd9iyrz";
};
prePatch = optionalString hpnSupport
''
gunzip -c ${hpnSrc} | patch -p1
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
'';
patches =
[
./RH-1380296-NEWKEYS-null-pointer-deref.patch
./locale_archive.patch
2016-04-01 13:52:59 +00:00
./fix-host-key-algorithms-plus.patch
# See discussion in https://github.com/NixOS/nixpkgs/pull/16966
./dont_create_privsep_path.patch
2016-04-01 13:52:59 +00:00
]
++ optional withGssapiPatches gssapiSrc;
2014-01-31 08:34:27 +00:00
buildInputs = [ zlib openssl libedit pkgconfig pam ]
++ optional withKerberos kerberos;
# I set --disable-strip because later we strip anyway. And it fails to strip
# properly when cross building.
configureFlags = [
"--sbindir=\${out}/bin"
"--localstatedir=/var"
"--with-pid-dir=/run"
"--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"
++ optional (!linkOpenssl) "--without-openssl";
2014-11-20 11:12:33 +00:00
enableParallelBuilding = true;
hardeningEnable = [ "pie" ];
2016-02-26 16:30:26 +00: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/
'';
installTargets = [ "install-nokeys" ];
installFlags = [
"sysconfdir=\${out}/etc/ssh"
];
meta = {
homepage = "http://www.openssh.com/";
description = "An implementation of the SSH protocol";
license = stdenv.lib.licenses.bsd2;
2014-01-31 08:34:27 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ eelco ];
2014-11-27 00:19:24 +00:00
broken = hpnSupport; # probably after 6.7 update
};
}