gnu: putty: Update to 0.76.

* gnu/packages/networking.scm (putty): Update to 0.76.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2021-11-03 01:29:51 +01:00
parent f14cedfc16
commit a807ae2666
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -4209,23 +4209,21 @@ (define-public netdiscover
(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