guix-glicid/glicid/packages/cpp.scm

21 lines
691 B
Scheme
Raw Normal View History

2025-02-10 13:12:59 +01:00
(define-module (glicid packages cpp)
#:use-module (guix packages)
#:use-module (gnu packages cpp)
)
2024-01-12 11:53:20 +01:00
(define-public reproc-with-cpp
2025-02-10 13:12:59 +01:00
(package
(inherit reproc)
(name "reproc-with-cpp")
(arguments
`(#:tests? #f
#:configure-flags `("-DBUILD_SHARED_LIBS=1" "-DREPROC++=1")))))
2024-01-12 11:53:20 +01:00
2024-01-12 22:19:40 +01:00
(define-public reproc-with-cpp-static
2025-02-10 13:12:59 +01:00
(package
(inherit reproc)
(name "reproc-with-cpp-static")
(arguments
`(#:tests? #f
#:configure-flags `("-DREPROC++=1")))))