[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63219] [PATCH mesa-branch 1/4] gnu: mesa: Fix library paths in Vulk
From: |
Kaelyn Takata |
Subject: |
[bug#63219] [PATCH mesa-branch 1/4] gnu: mesa: Fix library paths in Vulkan layer manifests. |
Date: |
Tue, 02 May 2023 01:01:58 +0000 |
* gnu/packages/gl.scm (mesa): Fix library paths in Vulkan layer manifests.
---
gnu/packages/gl.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 3a63d70c7a..6521170ebb 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -17,6 +17,7 @@
;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2023 Kaelyn Takata <kaelyn.alexi@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -488,7 +489,28 @@ (define-public mesa
file)
(symlink reference file)))
others))))
- (delete-duplicates inodes))))))))
+ (delete-duplicates inodes)))))
+ (add-after 'install 'set-layer-path-in-manifests
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (implicit-path (string-append
+ out
+ "/share/vulkan/implicit_layer.d/"))
+ (explicit-path (string-append
+ out
+ "/share/vulkan/explicit_layer.d/"))
+ (fix-layer-path
+ (lambda (layer-name)
+ (let* ((explicit (string-append explicit-path
layer-name ".json"))
+ (implicit (string-append implicit-path
layer-name ".json"))
+ (manifest (if (file-exists? explicit)
+ explicit
+ implicit)))
+ (substitute* manifest
+ (((string-append "\"lib" layer-name ".so\""))
+ (string-append "\"" out "/lib/lib" layer-name
".so\"")))))))
+ (for-each fix-layer-path '("VkLayer_MESA_device_select"
+ "VkLayer_MESA_overlay"))))))))
(home-page "https://mesa3d.org/")
(synopsis "OpenGL and Vulkan implementations")
(description "Mesa is a free implementation of the OpenGL and Vulkan
--
2.39.2
- [bug#63219] [PATCH mesa-branch 0/4] Mesa update plus various fixes and cleanups., Kaelyn Takata, 2023/05/01
- [bug#63219] [PATCH mesa-branch 2/4] gnu: mesa: Use gexps instead of quasiquote., Kaelyn Takata, 2023/05/01
- [bug#63219] [PATCH mesa-branch 1/4] gnu: mesa: Fix library paths in Vulkan layer manifests.,
Kaelyn Takata <=
- [bug#63219] [PATCH mesa-branch 3/4] gnu: mesa: Fix hardware video decoding., Kaelyn Takata, 2023/05/01
- [bug#63219] [PATCH mesa-branch 4/4] gnu: mesa: Update to 23.0.3., Kaelyn Takata, 2023/05/01
- [bug#63219] [PATCH mesa-branch v2 2/4] gnu: mesa: Use gexps instead of quasiquote., Kaelyn Takata, 2023/05/02
- [bug#63219] [PATCH mesa-branch v3 0/4] Mesa update plus various fixes and cleanups., Kaelyn Takata, 2023/05/04
- [bug#63219] [PATCH mesa-branch 0/4] Mesa update plus various fixes and cleanups., Brendan Tildesley, 2023/05/05