From 7ec8a42a2fec78bfb6e5f27369b189ee3bbb741d Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Sun, 15 Mar 2026 14:37:42 +0100 Subject: [PATCH] gnu: glad: Install missing cmake file. * gnu/packages/gl.scm (glad)[arguments]<#:phases>{install-cmakelists.txt}: Install an additional configuration file. Fixes: guix/guix#7183 Change-Id: I080bcca553e6324ea7fa6a48e33aa2a29743e591 Signed-off-by: John Kehayias --- gnu/packages/gl.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 27b1fd01b2..f90c5a8865 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -265,7 +265,8 @@ generate a GL/GLES/EGL/GLX/WGL loader tailored for specific requirements.") (lambda _ (let ((share (string-append #$output "/share/" #$(package-name this-package)))) - (install-file "cmake/CMakeLists.txt" share)))) + (install-file "cmake/CMakeLists.txt" share) + (install-file "cmake/GladConfig.cmake" share)))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests?