gnu: freetalk: Update to 4.2.
* gnu/packages/messaging.scm (freetalk): Update to 4.2. [arguments]: Remove unneeded "CFLAGS=-fcommon" from #:configure-flags. Don't explicitly return #t from phases. [inputs]: Update guile-2.0 to guile-3.0.master
parent
56e17f6493
commit
d62b180ffd
|
@ -2081,19 +2081,17 @@ support, and more.")
|
||||||
(define-public freetalk
|
(define-public freetalk
|
||||||
(package
|
(package
|
||||||
(name "freetalk")
|
(name "freetalk")
|
||||||
(version "4.1")
|
(version "4.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/freetalk/freetalk-"
|
(uri (string-append "mirror://gnu/freetalk/freetalk-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1rmrn7a1bb7vm26yaklrvx008a9qhwc32s57dwrlf40lv9gffwny"))))
|
"105mw7pg2mcp85r82cs4rv77nwvbw8025047364jzbq6lwllynxv"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:phases
|
||||||
(list "CFLAGS=-fcommon")
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; For 'system' commands in Scheme code.
|
;; For 'system' commands in Scheme code.
|
||||||
(add-after 'install 'wrap-program
|
(add-after 'install 'wrap-program
|
||||||
|
@ -2106,14 +2104,13 @@ support, and more.")
|
||||||
`("PATH" ":" prefix
|
`("PATH" ":" prefix
|
||||||
,(map (lambda (dir)
|
,(map (lambda (dir)
|
||||||
(string-append dir "/bin"))
|
(string-append dir "/bin"))
|
||||||
(list bash coreutils less))))
|
(list bash coreutils less))))))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config texinfo))
|
(list autoconf automake pkg-config texinfo))
|
||||||
(inputs
|
(inputs
|
||||||
(list bash
|
(list bash
|
||||||
glib
|
glib
|
||||||
guile-2.0
|
guile-3.0
|
||||||
less
|
less
|
||||||
loudmouth
|
loudmouth
|
||||||
readline))
|
readline))
|
||||||
|
|
Reference in New Issue