add static version

This commit is contained in:
Yann Dupont 2024-01-12 22:19:40 +01:00
parent 144ffc5b7c
commit f0bac7cf4e

View file

@ -17,3 +17,16 @@
))
(define-public reproc-with-cpp-static
(package
(inherit reproc)
(name "reproc-with-cpp-static")
(arguments
;; No tests.
`(#:tests? #f
;; Build the shared library instead of a static one.
#:configure-flags `("-DREPROC++=1")))
))