summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Neidhardt <mail@ambrevar.xyz>2022-11-21 14:48:33 +0100
committerPierre Neidhardt <mail@ambrevar.xyz>2022-11-21 15:04:42 +0100
commit6df7d0d4f01e9ffad901ef63b0adf112cfc6ab0f (patch)
tree2d36f8aea098a8d26f4147fb7c4f07e006f2bf69
parentf3227e33d1782508bbf530de61fa3a8bda253423 (diff)
nongnu: dxvk-next: Update to 2.0.
* nongnu/packages/wine.scm (dxvk-next): Update to 2.0. * nongnu/packages/wine.scm (dxvk-1.10): New variable.
-rw-r--r--nongnu/packages/wine.scm20
1 files changed, 18 insertions, 2 deletions
diff --git a/nongnu/packages/wine.scm b/nongnu/packages/wine.scm
index ff15e23..7d63a8c 100644
--- a/nongnu/packages/wine.scm
+++ b/nongnu/packages/wine.scm
@@ -157,7 +157,7 @@ Use @command{setup_dxvk} to install the required libraries to a Wine prefix.")
157(define-public dxvk-next 157(define-public dxvk-next
158 (package 158 (package
159 (name "dxvk") 159 (name "dxvk")
160 (version "1.10.1") 160 (version "2.0")
161 (home-page "https://github.com/doitsujin/dxvk/") 161 (home-page "https://github.com/doitsujin/dxvk/")
162 (source (origin 162 (source (origin
163 (method url-fetch) 163 (method url-fetch)
@@ -166,7 +166,7 @@ Use @command{setup_dxvk} to install the required libraries to a Wine prefix.")
166 version "/dxvk-" version ".tar.gz") ) 166 version "/dxvk-" version ".tar.gz") )
167 (sha256 167 (sha256
168 (base32 168 (base32
169 "1ah7nci49ipaj7z7zac4dqbrxq1ic3zyky42kkid8wqarf198d6w")))) 169 "0xr4lq4zdmqwxh5x19am2y4lvy6q6s6bl1nfr4ixfgy2l2sghliq"))))
170 (build-system copy-build-system) 170 (build-system copy-build-system)
171 (arguments 171 (arguments
172 `(#:install-plan 172 `(#:install-plan
@@ -211,3 +211,19 @@ allows running complex 3D applications with high performance using Wine.
211Use @command{setup_dxvk} to install the required libraries to a Wine prefix.") 211Use @command{setup_dxvk} to install the required libraries to a Wine prefix.")
212 (supported-systems '("i686-linux" "x86_64-linux")) 212 (supported-systems '("i686-linux" "x86_64-linux"))
213 (license license:zlib))) 213 (license license:zlib)))
214
215;; Keep 1.10 since it's backward-compatible with older hardware unlike 2.*
216;; See https://github.com/doitsujin/dxvk/releases/tag/v2.0
217(define-public dxvk-1.10
218 (package
219 (inherit dxvk)
220 (version "1.10.1")
221 (home-page "https://github.com/doitsujin/dxvk/")
222 (source (origin
223 (method url-fetch)
224 (uri (string-append
225 "https://github.com/doitsujin/dxvk/releases/download/v"
226 version "/dxvk-" version ".tar.gz"))
227 (sha256
228 (base32
229 "1ah7nci49ipaj7z7zac4dqbrxq1ic3zyky42kkid8wqarf198d6w"))))))