From 3646a44a14337f284139faab0e8992448517aafb Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Tue, 16 Jun 2020 16:39:32 +0300
Subject: [PATCH] build-system: cmake: Add substitutable keyword.

* guix/build-system/cmake.scm (cmake-build, cmake-cross-build): Add
substitutable keyword.
---
 guix/build-system/cmake.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/guix/build-system/cmake.scm b/guix/build-system/cmake.scm
index 29259c5785c..f590b6ea422 100644
--- a/guix/build-system/cmake.scm
+++ b/guix/build-system/cmake.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2013, 2014, 2015, 2020 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
 ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -113,6 +114,7 @@ (define* (cmake-build store name inputs
                       (phases '(@ (guix build cmake-build-system)
                                   %standard-phases))
                       (system (%current-system))
+                      (substitutable? #t)
                       (imported-modules %cmake-build-system-modules)
                       (modules '((guix build cmake-build-system)
                                  (guix build utils))))
@@ -162,6 +164,7 @@ (define guile-for-build
                                 #:inputs inputs
                                 #:modules imported-modules
                                 #:outputs outputs
+                                #:substitutable? substitutable?
                                 #:guile-for-build guile-for-build))
 
 
@@ -192,6 +195,7 @@ (define* (cmake-cross-build store name
                                                   "bin" "sbin"))
                             (phases '(@ (guix build cmake-build-system)
                                         %standard-phases))
+                            (substitutable? #t)
                             (system (%current-system))
                             (build (nix-system->gnu-triplet system))
                             (imported-modules %cmake-build-system-modules)
@@ -271,6 +275,7 @@ (define guile-for-build
                                 #:inputs (append native-drvs target-drvs)
                                 #:outputs outputs
                                 #:modules imported-modules
+                                #:substitutable? substitutable?
                                 #:guile-for-build guile-for-build))
 
 (define cmake-build-system
-- 
GitLab