nixpkgs-suyu/pkgs/applications/networking/remote/putty/default.nix

55 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, autoconf, automake, pkgconfig, libtool
2018-08-07 16:24:48 +02:00
, gtk2, halibut, ncurses, perl
, hostPlatform, lib }:
stdenv.mkDerivation rec {
version = "0.70";
name = "putty-${version}";
src = fetchurl {
urls = [
"https://the.earth.li/~sgtatham/putty/${version}/${name}.tar.gz"
"ftp://ftp.wayne.edu/putty/putty-website-mirror/${version}/${name}.tar.gz"
];
sha256 = "1gmhwwj1y7b5hgkrkxpf4jddjpk9l5832zq5ibhsiicndsfs92mv";
};
2018-08-07 16:24:48 +02:00
preConfigure = lib.optionalString hostPlatform.isUnix ''
perl mkfiles.pl
( cd doc ; make );
2015-07-27 01:52:24 +02:00
sed -e '/AM_PATH_GTK(/d' \
-e '/AC_OUTPUT/iAM_PROG_CC_C_O' \
-e '/AC_OUTPUT/iAM_PROG_AR' -i configure.ac
2012-10-30 09:49:43 +01:00
./mkauto.sh
cd unix
2018-08-07 16:24:48 +02:00
'' + lib.optionalString hostPlatform.isWindows ''
cd windows
'';
2018-08-07 16:24:48 +02:00
TOOLPATH = stdenv.cc.targetPrefix;
makefile = if hostPlatform.isWindows then "Makefile.mgw" else null;
installPhase = if hostPlatform.isWindows then ''
for exe in *.exe; do
install -D $exe $out/bin/$exe
done
'' else null;
nativeBuildInputs = [ autoconf automake halibut libtool perl pkgconfig ];
2018-08-07 16:24:48 +02:00
buildInputs = []
++ lib.optionals hostPlatform.isUnix [ gtk2 ncurses ];
enableParallelBuilding = true;
2018-08-07 16:24:48 +02:00
meta = with lib; {
description = "A Free Telnet/SSH Client";
longDescription = ''
PuTTY is a free implementation of Telnet and SSH for Windows and Unix
platforms, along with an xterm terminal emulator.
It is written and maintained primarily by Simon Tatham.
'';
homepage = https://www.chiark.greenend.org.uk/~sgtatham/putty/;
license = licenses.mit;
2018-08-07 16:24:48 +02:00
platforms = platforms.unix ++ platforms.windows;
};
}