build-system/cmake: Add support for the #:disallowed-references key.

* guix/build-system/cmake.scm (cmake-build, cmake-cross-build):
Add #:disallowed-references.
This commit is contained in:
Leo Famulari 2023-04-21 16:18:52 -04:00
parent d3e91a83b6
commit 3b5b668303
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08

View File

@ -115,7 +115,8 @@
(substitutable? #t)
(imported-modules %cmake-build-system-modules)
(modules '((guix build cmake-build-system)
(guix build utils))))
(guix build utils)))
disallowed-references)
"Build SOURCE using CMAKE, and with INPUTS. This assumes that SOURCE
provides a 'CMakeLists.txt' file as its build system."
(define build
@ -157,6 +158,7 @@ provides a 'CMakeLists.txt' file as its build system."
#:target #f
#:graft? #f
#:substitutable? substitutable?
#:disallowed-references disallowed-references
#:guile-for-build guile)))
@ -190,7 +192,8 @@ provides a 'CMakeLists.txt' file as its build system."
(build (nix-system->gnu-triplet system))
(imported-modules %cmake-build-system-modules)
(modules '((guix build cmake-build-system)
(guix build utils))))
(guix build utils)))
disallowed-references)
"Cross-build NAME using CMAKE for TARGET, where TARGET is a GNU triplet and
with INPUTS. This assumes that SOURCE provides a 'CMakeLists.txt' file as its
build system."