mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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 @@ (define-public libmspub
|
|||
(uri (string-append "https://dev-www.libreoffice.org/src/" name "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(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)
|
||||
(native-inputs
|
||||
`(("doxygen" ,doxygen)
|
||||
|
|
Loading…
Reference in a new issue