2010-05-19 14:26:06 +02:00
|
|
|
{ stdenv, fetchurl, zlib, openssl, perl, libedit, pkgconfig, pam
|
2009-10-01 14:07:33 +02:00
|
|
|
, etcDir ? null
|
2009-11-02 22:49:06 +01:00
|
|
|
, hpnSupport ? false
|
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
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
hpnSrc = fetchurl {
|
2012-01-31 12:01:12 +01:00
|
|
|
url = http://www.psc.edu/networking/projects/hpn-ssh/openssh-5.9p1-hpn13v12.diff.gz;
|
|
|
|
sha256 = "0h1h45vic4zks5bc5mvkc50rlgy2c219vn3rmpmalgm5hws9qjbl";
|
2004-08-02 13:55:31 +02:00
|
|
|
};
|
2009-10-01 14:07:33 +02:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
in
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-18 23:01:08 +02:00
|
|
|
name = "openssh-6.1p1";
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-02-01 17:56:10 +01:00
|
|
|
src = fetchurl {
|
2010-04-22 22:12:09 +02:00
|
|
|
url = "ftp://ftp.nl.uu.net/pub/OpenBSD/OpenSSH/portable/${name}.tar.gz";
|
2012-09-18 23:01:08 +02:00
|
|
|
sha1 = "751c92c912310c3aa9cadc113e14458f843fc7b3";
|
2010-02-01 17:56:10 +01:00
|
|
|
};
|
2006-12-11 04:24:35 +01:00
|
|
|
|
2010-05-09 14:44:09 +02:00
|
|
|
prePatch = stdenv.lib.optionalString hpnSupport
|
2010-02-01 17:56:10 +01:00
|
|
|
''
|
|
|
|
gunzip -c ${hpnSrc} | patch -p1
|
2011-04-13 22:44:17 +02:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
2010-08-25 23:12:36 +02:00
|
|
|
|
2010-05-09 14:44:09 +02:00
|
|
|
patches = [ ./locale_archive.patch ];
|
2010-05-19 14:26:06 +02:00
|
|
|
|
2011-04-25 17:41:32 +02:00
|
|
|
buildNativeInptus = [ perl ];
|
|
|
|
buildInputs = [ zlib openssl libedit pkgconfig pam ];
|
2010-02-01 17:56:10 +01: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.
|
2010-02-01 17:56:10 +01:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-mantype=man
|
2010-04-22 20:16:18 +02:00
|
|
|
--with-libedit=yes
|
2011-04-25 17:41:32 +02:00
|
|
|
--disable-strip
|
2010-05-19 14:26:06 +02:00
|
|
|
${if pam != null then "--with-pam" else "--without-pam"}
|
2010-02-01 17:56:10 +01:00
|
|
|
${if etcDir != null then "--sysconfdir=${etcDir}" else ""}
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlags="$configureFlags --with-privsep-path=$out/empty"
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/empty
|
2010-02-01 17:56:10 +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/
|
2010-02-01 18:04:07 +01:00
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/etc/ssh
|
2010-02-01 18:04:07 +01:00
|
|
|
cp moduli $out/etc/ssh/
|
2010-02-01 17:56:10 +01:00
|
|
|
'';
|
2007-05-15 15:10:41 +02:00
|
|
|
|
2009-10-01 15:06:41 +02:00
|
|
|
installTargets = "install-nosysconf";
|
2010-02-01 17:56:10 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.openssh.org/;
|
|
|
|
description = "An implementation of the SSH protocol";
|
|
|
|
license = "bsd";
|
|
|
|
};
|
2004-08-02 13:55:31 +02:00
|
|
|
}
|