mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: dxvk: Fix inputs and configure flag expansion.
* gnu/packages/wine.scm (dxvk)[arguments]: Unquote match. [native-inputs]: Remove wine and dxvk32... [inputs]: ...And add them here.
This commit is contained in:
parent
ab1c063ab0
commit
223492f350
1 changed files with 6 additions and 5 deletions
|
@ -585,9 +585,9 @@ (define-public dxvk
|
|||
`(#:configure-flags (list "--cross-file"
|
||||
(string-append (assoc-ref %build-inputs "source")
|
||||
"/build-wine"
|
||||
(match (%current-system)
|
||||
("x86_64-linux" "64")
|
||||
(_ "32"))
|
||||
,(match (%current-system)
|
||||
("x86_64-linux" "64")
|
||||
(_ "32"))
|
||||
".txt"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
@ -616,8 +616,9 @@ (define-public dxvk
|
|||
(_ "../lib")))
|
||||
(("x64") "../lib"))))))))
|
||||
(native-inputs
|
||||
`(("glslang" ,glslang)
|
||||
("wine" ,(match (%current-system)
|
||||
`(("glslang" ,glslang)))
|
||||
(inputs
|
||||
`(("wine" ,(match (%current-system)
|
||||
("x86_64-linux" wine64)
|
||||
(_ wine)))
|
||||
,@(match (%current-system)
|
||||
|
|
Loading…
Reference in a new issue