mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: jbr21: Update to 21.0.2b375.1.
* gnu/packages/java.scm (jbr21): Update to 21.0.2b375.1. Change-Id: Ib85e6cefcc7e2103f073cb460b0d75742594bd38
This commit is contained in:
parent
f93d86aaaf
commit
c0f88cd186
1 changed files with 5 additions and 3 deletions
|
@ -92,6 +92,7 @@ (define-module (gnu packages java)
|
||||||
#:use-module (gnu packages kerberos)
|
#:use-module (gnu packages kerberos)
|
||||||
#:use-module (gnu packages security-token)
|
#:use-module (gnu packages security-token)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module ((srfi srfi-1) #:select (fold alist-delete))
|
#:use-module ((srfi srfi-1) #:select (fold alist-delete))
|
||||||
|
@ -1756,20 +1757,21 @@ (define-public jbr21
|
||||||
(package
|
(package
|
||||||
(inherit openjdk21)
|
(inherit openjdk21)
|
||||||
(name "jbr")
|
(name "jbr")
|
||||||
(version "21-b240.22")
|
(version "21.0.2b375.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/JetBrains/JetBrainsRuntime.git")
|
(url "https://github.com/JetBrains/JetBrainsRuntime.git")
|
||||||
(commit (string-append "jb" version))))
|
(commit (string-append "jbr-release-" version))))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1sx48mm5vap4ab1qr6hy25wlgxljmhvpvrqiqiq692izr8dh7j4c"))
|
"15rcwbch0xxzcgggc34lna9dwimwqsc0z4mvw5hd428414gz71iy"))
|
||||||
(patches (search-patches "openjdk-21-fix-rpath.patch"
|
(patches (search-patches "openjdk-21-fix-rpath.patch"
|
||||||
"jbr-17-xcursor-no-dynamic.patch"))))
|
"jbr-17-xcursor-no-dynamic.patch"))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("wayland" ,wayland)
|
`(("wayland" ,wayland)
|
||||||
|
("libxkbcommon" ,libxkbcommon) ; for wayland
|
||||||
,@(package-inputs openjdk21)))
|
,@(package-inputs openjdk21)))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments openjdk21)
|
(substitute-keyword-arguments (package-arguments openjdk21)
|
||||||
|
|
Loading…
Reference in a new issue