From f0bac7cf4e11723026c5d9802405c94d3a32718a Mon Sep 17 00:00:00 2001 From: "dupont-y@univ-nantes.fr" Date: Fri, 12 Jan 2024 22:19:40 +0100 Subject: [PATCH] add static version --- glicid/packages/cpp.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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"))) + + + +))