2010-05-19 16:26:06 +04:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
|
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
|
|
|
|
, kerberos
|
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;
|
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
let
|
2009-10-01 16:07:33 +04:00
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
hpnSrc = fetchurl {
|
2013-06-25 16:05:48 +04:00
|
|
|
url = http://tarballs.nixos.org/openssh-6.1p1-hpn13v14.diff.gz;
|
2013-02-19 14:02:20 +04:00
|
|
|
sha256 = "14das6lim6fxxnx887ssw76ywsbvx3s4q3n43afgh5rgvs4xmnnq";
|
2004-08-02 15:55:31 +04:00
|
|
|
};
|
2009-10-01 16:07:33 +04:00
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
in
|
2006-12-11 06:24:35 +03:00
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-12 16:50:55 +04:00
|
|
|
name = "openssh-6.2p2";
|
2006-12-11 06:24:35 +03:00
|
|
|
|
2010-02-01 19:56:10 +03:00
|
|
|
src = fetchurl {
|
2010-04-23 00:12:09 +04:00
|
|
|
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
2013-08-12 16:50:55 +04:00
|
|
|
sha1 = "c2b4909eba6f5ec6f9f75866c202db47f3b501ba";
|
2010-02-01 19:56:10 +03:00
|
|
|
};
|
2006-12-11 06:24:35 +03:00
|
|
|
|
2010-05-09 16:44:09 +04:00
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
2010-02-01 19:56:10 +03:00
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
2011-04-14 00:44:17 +04:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
2010-02-01 19:56:10 +03:00
|
|
|
'';
|
2013-02-19 14:02:20 +04:00
|
|
|
|
2013-11-08 19:42:59 +04:00
|
|
|
patches = [ ./locale_archive.patch ./gcmrekey.patch ];
|
2010-05-19 16:26:06 +04:00
|
|
|
|
2013-06-15 10:40:01 +04:00
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ] ++
|
|
|
|
(if withKerberos then [ kerberos ] else [])
|
|
|
|
;
|
2010-02-01 19:56:10 +03:00
|
|
|
|
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.
|
2010-02-01 19:56:10 +03:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-mantype=man
|
2010-04-22 22:16:18 +04:00
|
|
|
--with-libedit=yes
|
2011-04-25 19:41:32 +04:00
|
|
|
--disable-strip
|
2010-05-19 16:26:06 +04:00
|
|
|
${if pam != null then "--with-pam" else "--without-pam"}
|
2010-02-01 19:56:10 +03:00
|
|
|
${if etcDir != null then "--sysconfdir=${etcDir}" else ""}
|
2013-06-15 10:40:01 +04:00
|
|
|
${if withKerberos then "--with-kerberos5=${kerberos}" else ""}
|
2010-02-01 19:56:10 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-privsep-path=$out/empty"
|
2012-01-19 00:16:00 +04:00
|
|
|
mkdir -p $out/empty
|
2010-02-01 19:56:10 +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/
|
2010-02-01 20:04:07 +03:00
|
|
|
|
2012-01-19 00:16:00 +04:00
|
|
|
mkdir -p $out/etc/ssh
|
2010-02-01 20:04:07 +03:00
|
|
|
cp moduli $out/etc/ssh/
|
2010-02-01 19:56:10 +03:00
|
|
|
'';
|
2007-05-15 17:10:41 +04:00
|
|
|
|
2009-10-01 17:06:41 +04:00
|
|
|
installTargets = "install-nosysconf";
|
2010-02-01 19:56:10 +03:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.openssh.org/;
|
|
|
|
description = "An implementation of the SSH protocol";
|
|
|
|
license = "bsd";
|
2013-10-29 20:35:17 +04:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-04-12 17:25:53 +04:00
|
|
|
maintainers = stdenv.lib.maintainers.eelco;
|
2010-02-01 19:56:10 +03:00
|
|
|
};
|
2004-08-02 15:55:31 +04:00
|
|
|
}
|