diff options
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/version-control.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 4fbf3b4d05..4bdf63cc63 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -937,6 +937,10 @@ write native speed custom Git applications in any language with bindings.") #t)) (replace 'build (lambda _ + ;; Add flag to work around OpenSSL 3 incompatibility. + ;; See <https://github.com/AGWA/git-crypt/issues/232>. + (setenv "CXXFLAGS" "-DOPENSSL_API_COMPAT=0x30000000L") + (invoke "make" "ENABLE_MAN=yes"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) |