guix-glicid/glicid/packages/cpp.scm
2024-01-12 18:37:10 +01:00

19 lines
365 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_DEVELOP=1")))
))