mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
20 lines
359 B
Scheme
20 lines
359 B
Scheme
|
(define-module (glicid packages cpp))
|
||
|
|
||
|
(use-modules (guix packages) (gnu packages cpp))
|
||
|
|
||
|
|
||
|
(define-public reproc-with-cpp
|
||
|
(package
|
||
|
(inherit reproc)
|
||
|
(name "reproc-with-cpp")
|
||
|
(arguments
|
||
|
;; No tests.
|
||
|
`(#:tests? #f
|
||
|
;; Build the shared library instead of a static one.
|
||
|
#:configure-flags `("-DBUILD_SHARED_LIBS=1 -DREPROC++=1")))
|
||
|
|
||
|
|
||
|
|
||
|
))
|
||
|
|