diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 01:29:51 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 03:10:53 +0100 |
commit | a807ae26668367f66bfe6a5ae541e14ed94651a5 (patch) | |
tree | cd0ed025094aa9dc38cc54bb07c96ec4a4fcbc9d /gnu/packages/networking.scm | |
parent | f14cedfc16d3b02e600e8d576add798ad43c097f (diff) | |
download | guix-a807ae26668367f66bfe6a5ae541e14ed94651a5.tar.gz |
gnu: putty: Update to 0.76.
* gnu/packages/networking.scm (putty): Update to 0.76. [arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu/packages/networking.scm')
-rw-r--r-- | gnu/packages/networking.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 8ac3b0095e..cdd8decc78 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4209,23 +4209,21 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send (define-public putty (package (name "putty") - (version "0.75") + (version "0.76") (source (origin (method url-fetch) (uri (string-append "http://www.putty.be/" version "/putty-" version ".tar.gz")) (sha256 - (base32 - "1xgrr1fbirw79zafspg2b6crzfmlfw910y79md4r7gnxgq1kn5yk")))) + (base32 "0gvi8phabszqksj2by5jrjmshm7bpirhgavz0dqyz1xaimxdjz2l")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'chdir (lambda _ - (chdir "unix") - #t))))) + (chdir "unix")))))) (inputs `(("gtk+" ,gtk+))) (native-inputs |