mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
20 lines
691 B
Scheme
20 lines
691 B
Scheme
(define-module (glicid packages cpp)
|
|
#:use-module (guix packages)
|
|
#:use-module (gnu packages cpp)
|
|
)
|
|
|
|
(define-public reproc-with-cpp
|
|
(package
|
|
(inherit reproc)
|
|
(name "reproc-with-cpp")
|
|
(arguments
|
|
`(#:tests? #f
|
|
#:configure-flags `("-DBUILD_SHARED_LIBS=1" "-DREPROC++=1")))))
|
|
|
|
(define-public reproc-with-cpp-static
|
|
(package
|
|
(inherit reproc)
|
|
(name "reproc-with-cpp-static")
|
|
(arguments
|
|
`(#:tests? #f
|
|
#:configure-flags `("-DREPROC++=1")))))
|