mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: xournalpp: Use G-expressions.
* gnu/packages/pdf.scm (xournalpp)[arguments]: Use G-expressions. <#:phases>: Replace WHICH with SEARCH-INPUT-FILES.
This commit is contained in:
parent
d00b6dd689
commit
72dd5c8766
1 changed files with 18 additions and 14 deletions
|
@ -42,6 +42,7 @@ (define-module (gnu packages pdf)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system gnu)
|
||||
|
@ -896,23 +897,26 @@ (define-public xournalpp
|
|||
(base32 "16pf50x1ps8dcynnvw5lz7ggl0jg7qvzv6gkd30xg3hkcxff8ch3"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list "-DENABLE_CPPUNIT=ON") ;enable tests
|
||||
#:imported-modules ((guix build glib-or-gtk-build-system)
|
||||
(list
|
||||
#:configure-flags #~(list "-DENABLE_CPPUNIT=ON") ;enable tests
|
||||
#:imported-modules `((guix build glib-or-gtk-build-system)
|
||||
,@%cmake-build-system-modules)
|
||||
#:modules (((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
|
||||
#:modules '(((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
|
||||
(guix build cmake-build-system)
|
||||
(guix build utils))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Fix path to addr2line utility, which the crash reporter uses.
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/util/Stacktrace.cpp"
|
||||
;; Match only the commandline.
|
||||
(("\"addr2line ")
|
||||
(string-append "\"" (which "addr2line") " ")))))
|
||||
(add-after 'install 'glib-or-gtk-wrap
|
||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; Fix path to addr2line utility, which the crash reporter uses.
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/util/Stacktrace.cpp"
|
||||
;; Match only the commandline.
|
||||
(("\"addr2line ")
|
||||
(string-append "\""
|
||||
(search-input-file inputs "/bin/addr2line")
|
||||
" ")))))
|
||||
(add-after 'install 'glib-or-gtk-wrap
|
||||
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
|
||||
(native-inputs
|
||||
(list cppunit gettext-minimal help2man pkg-config))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue