gnu: libmspub: Add missing include.
* gnu/packages/libreoffice.scm (libmspub)[source]: Add snippet to add missing include header.
This commit is contained in:
parent
08a9e49d02
commit
0e66a66864
1 changed files with 9 additions and 1 deletions
|
@ -592,7 +592,15 @@ Aldus/Macromedia/Adobe FreeHand documents.")
|
||||||
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256 (base32
|
(sha256 (base32
|
||||||
"1fhkn013gzg59f4z7rldpbi0nj7lgdqzxanspsqa6axvmahw2dpg"))))
|
"1fhkn013gzg59f4z7rldpbi0nj7lgdqzxanspsqa6axvmahw2dpg"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; This can be removed with the next release.
|
||||||
|
;; https://gerrit.libreoffice.org/c/libmspub/+/73814
|
||||||
|
(substitute* "src/lib/MSPUBMetaData.h"
|
||||||
|
(("include <vector>" all)
|
||||||
|
(string-append all "\n#include <cstdint>")))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("doxygen" ,doxygen)
|
`(("doxygen" ,doxygen)
|
||||||
|
|
Reference in a new issue