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

78 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
, etcDir ? null
, hpnSupport ? false
2013-06-15 06:40:01 +00:00
, withKerberos ? false
, kerberos
}:
2013-06-15 06:40:01 +00:00
assert withKerberos -> kerberos != null;
let
hpnSrc = fetchurl {
url = http://tarballs.nixos.org/openssh-6.1p1-hpn13v14.diff.gz;
sha256 = "14das6lim6fxxnx887ssw76ywsbvx3s4q3n43afgh5rgvs4xmnnq";
};
in
stdenv.mkDerivation rec {
2013-08-12 12:50:55 +00:00
name = "openssh-6.2p2";
src = fetchurl {
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
2013-08-12 12:50:55 +00:00
sha1 = "c2b4909eba6f5ec6f9f75866c202db47f3b501ba";
};
prePatch = stdenv.lib.optionalString hpnSupport
''
gunzip -c ${hpnSrc} | patch -p1
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
'';
2013-11-08 15:42:59 +00:00
patches = [ ./locale_archive.patch ./gcmrekey.patch ];
2013-06-15 06:40:01 +00:00
buildInputs = [ zlib openssl libedit pkgconfig pam ] ++
(if withKerberos then [ kerberos ] else [])
;
# I set --disable-strip because later we strip anyway. And it fails to strip
# properly when cross building.
configureFlags =
''
--with-mantype=man
--with-libedit=yes
--disable-strip
${if pam != null then "--with-pam" else "--without-pam"}
${if etcDir != null then "--sysconfdir=${etcDir}" else ""}
2013-06-15 06:40:01 +00:00
${if withKerberos then "--with-kerberos5=${kerberos}" else ""}
'';
preConfigure =
''
configureFlags="$configureFlags --with-privsep-path=$out/empty"
mkdir -p $out/empty
'';
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/
mkdir -p $out/etc/ssh
cp moduli $out/etc/ssh/
'';
installTargets = "install-nosysconf";
meta = {
homepage = http://www.openssh.org/;
description = "An implementation of the SSH protocol";
license = "bsd";
2013-10-29 16:35:17 +00:00
platforms = stdenv.lib.platforms.unix;
2013-04-12 13:25:53 +00:00
maintainers = stdenv.lib.maintainers.eelco;
};
}