gnu: Fix a few more snippets to return #t.
This is a followup to commit 6cbee49d66
.
* gnu/packages/video.scm (mlt, livemedia-utils)[source]
gnu/packages/web.scm (goaccess, httptunnel)[source]: Return #t from snippets.
This commit is contained in:
parent
99aaeaa00b
commit
2857e527de
|
@ -1798,7 +1798,8 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
;; As of glibc 2.26, <xlocale.h> no longer is.
|
;; As of glibc 2.26, <xlocale.h> no longer is.
|
||||||
(substitute* "src/framework/mlt_property.h"
|
(substitute* "src/framework/mlt_property.h"
|
||||||
(("xlocale\\.h") "locale.h"))))))
|
(("xlocale\\.h") "locale.h"))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
|
@ -2500,7 +2501,8 @@ many codecs and formats supported by libmediainfo.")
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
;; As of glibc 2.26, <xlocale.h> no longer is.
|
;; As of glibc 2.26, <xlocale.h> no longer is.
|
||||||
(substitute* "liveMedia/include/Locale.hh"
|
(substitute* "liveMedia/include/Locale.hh"
|
||||||
(("xlocale\\.h") "locale.h"))))))
|
(("xlocale\\.h") "locale.h"))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; no tests
|
'(#:tests? #f ; no tests
|
||||||
|
|
|
@ -4841,7 +4841,8 @@ config files---you only have to specify the www root.")
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
(substitute* "src/error.h"
|
(substitute* "src/error.h"
|
||||||
(("__DATE__") "\"1970-01-01\"")
|
(("__DATE__") "\"1970-01-01\"")
|
||||||
(("__TIME__") "\"00:00:00\""))))))
|
(("__TIME__") "\"00:00:00\""))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
;; TODO: Add dependency on geoip-tools.
|
;; TODO: Add dependency on geoip-tools.
|
||||||
|
@ -4873,7 +4874,8 @@ on the fly.")
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
;; Remove non-free IETF RFC documentation.
|
;; Remove non-free IETF RFC documentation.
|
||||||
(delete-file-recursively "doc")))))
|
(delete-file-recursively "doc")
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in New Issue