mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
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:
parent
f14cedfc16
commit
a807ae2666
1 changed files with 3 additions and 5 deletions
|
@ -4209,23 +4209,21 @@ (define-public netdiscover
|
||||||
(define-public putty
|
(define-public putty
|
||||||
(package
|
(package
|
||||||
(name "putty")
|
(name "putty")
|
||||||
(version "0.75")
|
(version "0.76")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.putty.be/" version
|
(uri (string-append "http://www.putty.be/" version
|
||||||
"/putty-" version ".tar.gz"))
|
"/putty-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0gvi8phabszqksj2by5jrjmshm7bpirhgavz0dqyz1xaimxdjz2l"))))
|
||||||
"1xgrr1fbirw79zafspg2b6crzfmlfw910y79md4r7gnxgq1kn5yk"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'chdir
|
(add-before 'configure 'chdir
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "unix")
|
(chdir "unix"))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("gtk+" ,gtk+)))
|
`(("gtk+" ,gtk+)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue