about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/putty/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/remote/putty/default.nix')
-rw-r--r--pkgs/applications/networking/remote/putty/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/remote/putty/default.nix b/pkgs/applications/networking/remote/putty/default.nix
new file mode 100644
index 000000000000..402b5a520f45
--- /dev/null
+++ b/pkgs/applications/networking/remote/putty/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, ncurses
+, gtk
+}:
+ 
+stdenv.mkDerivation {
+  name = "putty-0.60";
+  builder = ./builder.sh;
+  
+  src = fetchurl {
+    url = http://the.earth.li/~sgtatham/putty/latest/putty-0.60.tar.gz;
+    sha256 = "b2bbaaf9324997e85cf15d44ed41e8e89539c8215dceac9d6d7272a37dbc2849";
+  };
+
+  buildInputs = [
+   gtk ncurses
+  ];
+
+  #propagatedBuildInputs = [
+  #];
+
+  inherit gtk;
+}