summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/putty
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-27 01:52:24 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-27 01:54:08 +0200
commit4d20fb5f4428ab9998cea626eb33658a115b5486 (patch)
treeaace3ce5c2efca289ffa94c08d345d2c7cb7a4bf /pkgs/applications/networking/remote/putty
parente8596c189f3a0e47feae828b665b1a0f9549cac1 (diff)
downloadnixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar.gz
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar.bz2
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar.lz
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar.xz
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.tar.zst
nixpkgs-4d20fb5f4428ab9998cea626eb33658a115b5486.zip
putty: 0.64 -> 0.65
Diffstat (limited to 'pkgs/applications/networking/remote/putty')
-rw-r--r--pkgs/applications/networking/remote/putty/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/remote/putty/default.nix b/pkgs/applications/networking/remote/putty/default.nix
index fe89ce61604..dda847fde07 100644
--- a/pkgs/applications/networking/remote/putty/default.nix
+++ b/pkgs/applications/networking/remote/putty/default.nix
@@ -1,20 +1,20 @@
 { stdenv, fetchurl, ncurses, gtk, pkgconfig, autoconf, automake, perl, halibut, libtool }:
 
 stdenv.mkDerivation rec {
-  version = "0.64";
+  version = "0.65";
   name = "putty-${version}";
 
   src = fetchurl {
     url = "http://the.earth.li/~sgtatham/putty/latest/${name}.tar.gz";
-    sha256 = "089qbzd7w51sc9grm2x3lcbj61jdqsnakb4j4gnf6i2131xcjiia";
+    sha256 = "180ccrsyh775hdmxqdnbclfbvsfdp2zk3gsadpa53sj497yw2hym";
   };
 
   preConfigure = ''
     perl mkfiles.pl
     ( cd doc ; make );
-    sed '/AM_PATH_GTK(/d' -i unix/configure.ac
-    sed '/AC_OUTPUT/iAM_PROG_CC_C_O' -i unix/configure.ac
-    sed '/AC_OUTPUT/iAM_PROG_AR' -i unix/configure.ac
+    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
   '';