mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 11:00:36 +02:00
gnu: glfw-3.4: Fix build.
* gnu/packages/glfw.scm (glfw-3.4)[arguments]: Don't build out of source. Change-Id: I42437c60f7adbc0b087f7149b17181fbc8eab4ce
This commit is contained in:
parent
4395ed1228
commit
baf8c5cf80
1 changed files with 6 additions and 1 deletions
|
@ -1025,7 +1025,12 @@ and surfaces, receiving input and events.")
|
||||||
(base32
|
(base32
|
||||||
"1sd396kkn53myp61kxrd18h7b1q4ix173hhxhvl0iz8j4x5h1v5m"))))
|
"1sd396kkn53myp61kxrd18h7b1q4ix173hhxhvl0iz8j4x5h1v5m"))))
|
||||||
(native-inputs (modify-inputs (package-native-inputs glfw)
|
(native-inputs (modify-inputs (package-native-inputs glfw)
|
||||||
(prepend pkg-config)))))
|
(prepend pkg-config)))
|
||||||
|
;; When building out of source, the install phase fails with:
|
||||||
|
;; file INSTALL cannot find "/tmp/guix-build-glfw-3.4.drv-0/build/docs/html":
|
||||||
|
;; No such file or directory
|
||||||
|
(arguments (substitute-keyword-arguments (package-arguments glfw)
|
||||||
|
((#:out-of-source? _ #f) #f)))))
|
||||||
|
|
||||||
(define-public nanovg-for-extempore
|
(define-public nanovg-for-extempore
|
||||||
(let ((version "0.7.1")
|
(let ((version "0.7.1")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue