gnu: orage: Fix build.
* gnu/packages/xfce.scm (orage)[arguments]: Add phase fixing build with libical3. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b82cf9644a
commit
c629b99e3b
|
@ -981,6 +981,14 @@ memory usage graphically, and it can display processes as a tree.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"))))
|
"0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"))))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-build-with-libical3
|
||||||
|
(lambda* _
|
||||||
|
(substitute* "src/ical-code.c" ;; .is_utc not available in libical3
|
||||||
|
((".*\\.is_utc.*$") ""))
|
||||||
|
#t)))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
|
|
Loading…
Reference in New Issue