diff --git a/glicid/packages/cpp.scm b/glicid/packages/cpp.scm index 325f732..0859a83 100644 --- a/glicid/packages/cpp.scm +++ b/glicid/packages/cpp.scm @@ -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"))) + + + +))