mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00

They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
76 lines
1.7 KiB
Nix
76 lines
1.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
cmake,
|
|
perl,
|
|
pkg-config,
|
|
gtk3,
|
|
ncurses,
|
|
copyDesktopItems,
|
|
makeDesktopItem,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.83";
|
|
pname = "putty";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://the.earth.li/~sgtatham/putty/${version}/${pname}-${version}.tar.gz"
|
|
"ftp://ftp.wayne.edu/putty/putty-website-mirror/${version}/${pname}-${version}.tar.gz"
|
|
];
|
|
hash = "sha256-cYd3wT1j0N/5H+AxYrwqBbTfyLCCdjTNYLUc79/2McY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
perl
|
|
pkg-config
|
|
copyDesktopItems
|
|
];
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isUnix [
|
|
gtk3
|
|
ncurses
|
|
];
|
|
enableParallelBuilding = true;
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "PuTTY SSH Client";
|
|
exec = "putty";
|
|
icon = "putty";
|
|
desktopName = "PuTTY";
|
|
comment = "Connect to an SSH server with PuTTY";
|
|
categories = [
|
|
"GTK"
|
|
"Network"
|
|
];
|
|
})
|
|
(makeDesktopItem {
|
|
name = "PuTTY Terminal Emulator";
|
|
exec = "pterm";
|
|
icon = "pterm";
|
|
desktopName = "Pterm";
|
|
comment = "Start a PuTTY terminal session";
|
|
categories = [
|
|
"GTK"
|
|
"System"
|
|
"Utility"
|
|
"TerminalEmulator"
|
|
];
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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.unix ++ platforms.windows;
|
|
};
|
|
}
|