This package requires CMAKE_MODULE_PATH be set by the calling process. This patch uses the CMAKE_PREFIX_PATH passed from Guix as the search path for locating the bloomberg-bde-tools CMake modules. --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,7 @@ else() if (NOT CMAKE_MODULE_PATH) message(FATAL "Please specify path to BDE cmake modules.") endif() + string(REPLACE ":" "cmake/;" CMAKE_MODULE_PATH "$ENV{CMAKE_PREFIX_PATH}cmake/") include(bde_workspace) 'cgit logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/glib-appinfo-watch.patch
AgeCommit message (Expand)Author
2020-11-13gnu: glib: Graft patch to detect changes to the installed applications....Fixes <https://bugs.gnu.org/35594>. Reported by sirgazil <sirgazil@zoho.com> and others. * gnu/packages/patches/glib-appinfo-watch.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/glib.scm (glib)[replacement]: New field. (glib-with-gio-patch): New variable. (glib-with-documentation): Use 'package/inherit'. Ludovic Courtès