diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-14 08:37:27 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-17 12:59:53 +0100 |
commit | 2502e47b059f7718064b461d553ba87278918af9 (patch) | |
tree | c01910b29b245ab50f758de86d984f0ba09695ac | |
parent | 5dd9b0ef12c63f8efc3c18bb0361d56423b84804 (diff) |
Inspired by the Gentoo ebuild, update cmake to latest minor
-rw-r--r-- | private/komodo/cmake.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/private/komodo/cmake.scm b/private/komodo/cmake.scm index 108ad21cee..c9da1d3020 100644 --- a/private/komodo/cmake.scm +++ b/private/komodo/cmake.scm @@ -166,7 +166,7 @@ using the CMake build system.") (define-public cmake-bootstrap (package (name "cmake-bootstrap") - (version "3.27.1") + (version "3.27.9") (source (origin (method url-fetch) (uri (string-append "https://cmake.org/files/v" @@ -174,7 +174,7 @@ using the CMake build system.") "/cmake-" version ".tar.gz")) (sha256 (base32 - "01102g2j5klqxl6jvwhwz45libcg9hnb7xchdr3r86x1bw9v19mi")) + "13kh930cvljk4fg3ysva196ys29ijzxwy4prfyj5wsiaayc9p6k0")) (patches (search-patches "cmake-curl-certificates-3.24.patch")))) (build-system gnu-build-system) (arguments @@ -187,7 +187,7 @@ using the CMake build system.") (string-append "--prefix=" #$output) "--system-libs" "--no-system-cppdap" - ;; By default, the man pages and other docs land + ;; By default, the man pages and other docs land ;; in PREFIX/man and PREFIX/doc, but we want them ;; in share/{man,doc}. Note that unlike ;; autoconf-generated configure scripts, cmake's @@ -351,7 +351,7 @@ and workspaces that can be used in the compiler environment of your choice.") (package (inherit cmake-minimal) (name "cmake") - (version "3.27.1") + (version "3.27.9") (source (origin (inherit (package-source cmake-minimal)) (method url-fetch) @@ -366,7 +366,7 @@ and workspaces that can be used in the compiler environment of your choice.") ,@rest)))) (sha256 (base32 - "01102g2j5klqxl6jvwhwz45libcg9hnb7xchdr3r86x1bw9v19mi")) + "13kh930cvljk4fg3ysva196ys29ijzxwy4prfyj5wsiaayc9p6k0")) (patches (search-patches "cmake-curl-certificates-3.24.patch")))) (outputs '("out" "doc")) (arguments |