mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: spiped: Update to 1.6.2.
* gnu/packages/networking.scm (spiped): Update to 1.6.2. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
8cd281f878
commit
7fcd97b779
1 changed files with 4 additions and 6 deletions
|
@ -2975,14 +2975,14 @@ (define-public tftp-hpa
|
|||
(define-public spiped
|
||||
(package
|
||||
(name "spiped")
|
||||
(version "1.6.1")
|
||||
(version "1.6.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.tarsnap.com/spiped/spiped-"
|
||||
version ".tgz"))
|
||||
(sha256
|
||||
(base32
|
||||
"04rpnc53whfky7pp2m9h35gwzwn6788pnl6c1qd576mpknbqjw4d"))))
|
||||
"0rs5403bp48wyy2x0f3hk0f75ds1qn03sgyli2c7y7fi29ynim05"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:test-target "test"
|
||||
|
@ -3000,15 +3000,13 @@ (define-public spiped
|
|||
"libcperciva/cpusupport/Build/cpusupport.sh"
|
||||
"libcperciva/POSIX/posix-cflags.sh"
|
||||
"libcperciva/POSIX/posix-l.sh")
|
||||
(("command -p") ""))
|
||||
#t))
|
||||
(("command -p") ""))))
|
||||
(delete 'configure) ; No ./configure script.
|
||||
(add-after 'install 'install-more-docs
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref %outputs "out"))
|
||||
(misc (string-append out "/share/doc/spiped")))
|
||||
(install-file "DESIGN.md" misc)
|
||||
#t))))))
|
||||
(install-file "DESIGN.md" misc)))))))
|
||||
(native-inputs
|
||||
(list procps)) ; `ps` is used by the test suite.
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue