Merge branch 'devel' into 'main'

add static version

See merge request glicid-public/guix-glicid!370
This commit is contained in:
Yann Dupont 2024-01-12 21:20:28 +00:00
commit 272285b54b

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")))
))