tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
putty: 0.64 -> 0.65
Tobias Geerinckx-Rice
10 years ago
4d20fb5f
e8596c18
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
remote
putty
default.nix
+5
-5
pkgs/applications/networking/remote/putty/default.nix
···
1
1
{ stdenv, fetchurl, ncurses, gtk, pkgconfig, autoconf, automake, perl, halibut, libtool }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
version = "0.64";
4
4
+
version = "0.65";
5
5
name = "putty-${version}";
6
6
7
7
src = fetchurl {
8
8
url = "http://the.earth.li/~sgtatham/putty/latest/${name}.tar.gz";
9
9
-
sha256 = "089qbzd7w51sc9grm2x3lcbj61jdqsnakb4j4gnf6i2131xcjiia";
9
9
+
sha256 = "180ccrsyh775hdmxqdnbclfbvsfdp2zk3gsadpa53sj497yw2hym";
10
10
};
11
11
12
12
preConfigure = ''
13
13
perl mkfiles.pl
14
14
( cd doc ; make );
15
15
-
sed '/AM_PATH_GTK(/d' -i unix/configure.ac
16
16
-
sed '/AC_OUTPUT/iAM_PROG_CC_C_O' -i unix/configure.ac
17
17
-
sed '/AC_OUTPUT/iAM_PROG_AR' -i unix/configure.ac
15
15
+
sed -e '/AM_PATH_GTK(/d' \
16
16
+
-e '/AC_OUTPUT/iAM_PROG_CC_C_O' \
17
17
+
-e '/AC_OUTPUT/iAM_PROG_AR' -i configure.ac
18
18
./mkauto.sh
19
19
cd unix
20
20
'';