diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2019-09-10 19:04:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-11 00:09:39 +0200 |
commit | 489d16577e4a6ccc30f3719d9263900089edd842 (patch) | |
tree | c1318cde8ba173aeda49c686ba5f3c1ba20a855c /gnu/packages/cmake.scm | |
parent | 7e143375d3649f3c0bd4c13958b26c086f364647 (diff) | |
download | patches-489d16577e4a6ccc30f3719d9263900089edd842.tar patches-489d16577e4a6ccc30f3719d9263900089edd842.tar.gz |
gnu: cmake: Add package variant that knows about X.509 certificates.
Fixes <https://bugs.gnu.org/37371>.
* gnu/packages/patches/cmake-curl-certificates.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/cmake.scm (cmake/fixed): New variable.
Diffstat (limited to 'gnu/packages/cmake.scm')
-rw-r--r-- | gnu/packages/cmake.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm index 7186cf98df..95f884b36d 100644 --- a/gnu/packages/cmake.scm +++ b/gnu/packages/cmake.scm @@ -164,6 +164,18 @@ and workspaces that can be used in the compiler environment of your choice.") license:expat ; cmjsoncpp is dual MIT/public domain license:public-domain)))) ; cmlibarchive/archive_getdate.c +(define-public cmake/fixed + ;; This is a variant of CMake that fixes X.509 certificate lookup: + ;; <https://issues.guix.gnu.org/issue/37371>. + (package + (inherit cmake) + (version (string-append (package-version cmake) "-1")) + (source (origin + (inherit (package-source cmake)) + (patches + (append (search-patches "cmake-curl-certificates.patch") + (origin-patches (package-source cmake)))))))) + (define-public emacs-cmake-mode (package (inherit cmake) |