From 090053646aae7d312008821a0db1b730e90bc8ab Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Fri, 7 May 2021 12:26:20 +0200 Subject: [PATCH] bump cmake version --- gnu/packages/glicid.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index ea0caa1..cca2f8b 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -56,6 +56,7 @@ #:use-module (gnu packages image) #:use-module (gnu packages maths) #:use-module (guix utils) + #:use-module (gnu packages cmake) ) @@ -784,6 +785,23 @@ in the @code{debug} output), and binutils."))) ) ) +(define-public glicid-specific-cmake + (package + (inherit cmake) + (name "glicid-specific-cmake") + (version "3.20.2") + ;; TODO: Move the following source field to the cmake-bootstrap package in + ;; the next rebuild cycle. + (source (origin + (method url-fetch) + (uri (string-append "https://cmake.org/files/v" + (version-major+minor version) + "/cmake-" version ".tar.gz")) + (sha256 + (base32 + "0kjlb7sxbwg8z4027c3jjcmyjh9d36p0r9d4nqxynyaijz5nxkxf")))) + ) +) (define-public glicid-keepalived