gnu: dxvk: Update to 1.5.

* gnu/packages/wine.scm (dxvk): Update to 1.5.
This commit is contained in:
Pierre Neidhardt 2019-12-19 16:20:18 +01:00
parent a21b88f10c
commit f2c71f62dd
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 16 additions and 10 deletions

View File

@ -44,6 +44,7 @@
#:use-module (gnu packages fontutils)
#:use-module (gnu packages flex)
#:use-module (gnu packages image)
#:use-module (gnu packages gcc)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages gl)
@ -549,7 +550,7 @@ version)")
;; This package provides 32-bit dxvk libraries on 64-bit systems.
(package
(name "dxvk32")
(version "1.4.4")
(version "1.5")
(home-page "https://github.com/doitsujin/dxvk/")
(source (origin
(method git-fetch)
@ -559,7 +560,7 @@ version)")
(file-name (git-file-name name version))
(sha256
(base32
"0zr8hqyig18q4wp96cmfrkrgxxbgxida6k8cv6qbbldni29qy20w"))))
"009p99jkskrmy186gsqrf0p3v9z3lskw51r4vdp35af057q26a6x"))))
(build-system meson-build-system)
(arguments
`(#:system "i686-linux"
@ -567,10 +568,14 @@ version)")
(string-append (assoc-ref %build-inputs "source")
"/build-wine32.txt"))))
(native-inputs
`(("glslang" ,glslang)
("wine" ,wine)))
(synopsis "Vulkan-based D3D11 and D3D10 implementation for Wine")
(description "A Vulkan-based translation layer for Direct3D 10/11 which
;; Since 1.5 dxvk needs gcc-8.1. See
;; https://github.com/doitsujin/dxvk/issues/1292#issuecomment-567067373.
`(("gcc" ,gcc-9)
("glslang" ,glslang)))
(inputs
`(("wine" ,wine-staging)))
(synopsis "Vulkan-based D3D9, D3D10 and D3D11 implementation for Wine")
(description "A Vulkan-based translation layer for Direct3D 9/10/11 which
allows running complex 3D applications with high performance using Wine.
Use @command{setup_dxvk} to install the required libraries to a Wine prefix.")
@ -615,14 +620,15 @@ Use @command{setup_dxvk} to install the required libraries to a Wine prefix.")
("x86_64-linux" "../lib32")
(_ "../lib")))
(("x64") "../lib"))))))))
(native-inputs
`(("glslang" ,glslang)))
(inputs
`(("wine" ,(match (%current-system)
("x86_64-linux" wine64)
;; ("x86_64-linux" wine64)
("x86_64-linux" wine64-staging)
;; ("x86_64-linux" mingw-w64-x86_64)
(_ wine)))
,@(match (%current-system)
("x86_64-linux"
`(("dxvk32" ,dxvk32)))
(_ '()))))
(_ '()))
))
(supported-systems '("i686-linux" "x86_64-linux"))))