nongnu: vscodium: Update to 1.88.1.24104.
* nongnu/packages/editors.scm (vscodium): Update to 1.88.1.24104; [source]: add hashes for aarch64-linux and armhf-linux. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
779ef9a393
commit
2d1a5c8257
|
@ -1,5 +1,5 @@
|
||||||
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2023, 2024 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
|
|
||||||
(define-module (nongnu packages editors)
|
(define-module (nongnu packages editors)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
@ -14,20 +14,27 @@
|
||||||
(define-public vscodium
|
(define-public vscodium
|
||||||
(package
|
(package
|
||||||
(name "vscodium")
|
(name "vscodium")
|
||||||
(version "1.87.0.24060")
|
(version "1.88.1.24104")
|
||||||
(source
|
(source
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri
|
|
||||||
(let ((arch (match (or (%current-target-system) (%current-system))
|
(let ((arch (match (or (%current-target-system) (%current-system))
|
||||||
("aarch64-linux" "arm64")
|
("aarch64-linux" "arm64")
|
||||||
("armhf-linux" "armhf")
|
("armhf-linux" "armhf")
|
||||||
(_ "x64"))))
|
(_ "x64")))
|
||||||
|
(hash (match (or (%current-target-system) (%current-system))
|
||||||
|
("aarch64-linux"
|
||||||
|
"0412222l9r81f3aa3zlzrg42hzslvvck5kds7zrmpssjrd41jxfh")
|
||||||
|
("armhf-linux"
|
||||||
|
"1sblaigrxscx4l1kln1zxzm5da5lr50y1k6qb4igq6wxbdx55iay")
|
||||||
|
(_
|
||||||
|
"1n3gb12asid2qwwzf9fj974ws9n7has9l23ni8jscx9cp63l5rbl"))))
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
(string-append
|
(string-append
|
||||||
"https://github.com/VSCodium/vscodium/releases/download/" version
|
"https://github.com/VSCodium/vscodium/releases/download/" version
|
||||||
"/VSCodium-linux-" arch "-" version ".tar.gz")))
|
"/VSCodium-linux-" arch "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1lw7j8h0i96mg8si8dmi55ldbz5j63zb93qf1g59siavx84f1zpd"))))
|
(base32 hash)))))
|
||||||
(build-system chromium-binary-build-system)
|
(build-system chromium-binary-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:validate-runpath? #f ; TODO: fails on wrapped binary and included other files
|
(list #:validate-runpath? #f ; TODO: fails on wrapped binary and included other files
|
||||||
|
|
Loading…
Reference in New Issue
Block a user