mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
2eacddf0dc
* pgadmin: use https homepage * msn-pecan: move homepage to github google code is now unavailable * pidgin-latex: use https for homepage * pidgin-opensteamworks: use github for homepage google code is unavailable * putty: use https for homepage * ponylang: use https for homepage * picolisp: use https for homepage * phonon: use https for homepage * pugixml: use https for homepage * pioneer: use https for homepage * packer: use https for homepage * pokerth: usee https for homepage * procps-ng: use https for homepage * pycaml: use https for homepage * proot: move homepage to .github.io * pius: use https for homepage * pdfread: use https for homepage * postgresql: use https for homepage * ponysay: move homepage to new site * prometheus: use https for homepage * powerdns: use https for homepage * pm-utils: use https for homepage * patchelf: move homepage to https * tesseract: move homepage to github * quodlibet: move homepage from google code * jbrout: move homepage from google code * eiskaltdcpp: move homepage to github * nodejs: use https to homepage * nix: use https for homepage * pdf2djvu: move homepage from google code * game-music-emu: move homepage from google code * vacuum: move homepae from google code
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, ncurses, gtk2, pkgconfig, autoconf, automake, perl, halibut, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.67";
|
|
name = "putty-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://the.earth.li/~sgtatham/putty/latest/${name}.tar.gz";
|
|
sha256 = "0isak6dy5vmfzf9ckcq6jvhgrn3xfmfcmziaa7g2jqm4x1c286c0";
|
|
};
|
|
|
|
preConfigure = ''
|
|
perl mkfiles.pl
|
|
( cd doc ; make );
|
|
sed -e '/AM_PATH_GTK(/d' \
|
|
-e '/AC_OUTPUT/iAM_PROG_CC_C_O' \
|
|
-e '/AC_OUTPUT/iAM_PROG_AR' -i configure.ac
|
|
./mkauto.sh
|
|
cd unix
|
|
'';
|
|
|
|
buildInputs = [ gtk2 ncurses pkgconfig autoconf automake perl halibut libtool ];
|
|
|
|
meta = with stdenv.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;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|