Package Details: vscodium-electron 1.95.3.24321-1

Git Clone URL: https://aur.archlinux.org/vscodium-electron.git (read-only, click to copy)
Package Base: vscodium-electron
Description: VS Code without MS branding/telemetry/licensing. - System-wide Electron edition
Upstream URL: https://github.com/VSCodium/vscodium
Keywords: code codium electron system vscode vscodium wayland
Licenses: MIT
Conflicts: codium, vscodium, vscodium-bin, vscodium-git
Provides: codium, vscodium
Submitter: m00nw4tch3r
Maintainer: Richardn
Last Packager: Richardn
Votes: 8
Popularity: 0.93
First Submitted: 2022-04-10 18:19 (UTC)
Last Updated: 2024-11-19 02:42 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

REmorin commented on 2023-02-18 15:42 (UTC) (edited on 2023-02-19 11:15 (UTC) by REmorin)

@HurricanePootis, thanks for the info, I'm a bit new to the AUR, so this will be super useful to me.

Btw, please include at least the jq package to the makedepends, as in the vscodium package because the build fails without it.

HurricanePootis commented on 2023-02-16 20:51 (UTC)

@Remorin, Yes I can. Next time, please mark the package out of date so I can see that it is out of date without reading comments

REmorin commented on 2023-02-12 13:11 (UTC)

Hi, could you update the package, pls? It's off by 2 versions.

HurricanePootis commented on 2023-01-05 19:00 (UTC)

Oooorah :salute: I am now the AUR maintainer for this beautiful package :flushed:

brli commented on 2023-01-04 18:33 (UTC)

https://github.com/Brli/vscodium Hi, you can use my repo as source base to compile for latest vscodium

Gothem commented on 2022-11-07 18:30 (UTC)

Build fails without the jq package.

ixrk commented on 2022-10-30 19:45 (UTC)

Could you please fix this bashism in the vscodium.sh or change the shebang?

#!/bin/sh

if [ "${XDG_SESSION_TYPE}" == "wayland" ]; then
...

The == operator is undefined in sh. It's not a problem on the default Arch setup where sh is symlinked to bash, but in other cases the script behaves incorrectly or fails.

shurka commented on 2022-10-08 08:11 (UTC)

Seems like open-vsx.org is down again. Getting error Error: Request https://open-vsx.org/vscode/gallery/publishers/ms-vscode/vsextensions/js-debug-companion/1.0.18/vspackage failed with status code:503

kujeger commented on 2022-10-04 13:20 (UTC)

diff --git a/PKGBUILD b/PKGBUILD
index fbde5af..51cea82 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -41,6 +41,9 @@ case "$CARCH" in
   armv7h)
     _vscode_arch=arm
     ;;
+  aarch64)
+    _vscode_arch=arm64
+    ;;
   *)
     # Needed for mksrcinfo
     _vscode_arch=DUMMY

This change allows building on aarch64.

HurricanePootis commented on 2022-08-22 01:14 (UTC)

Here is a patchfile for vscodium 1.70.2. It builds and runs on my end.

diff --git a/PKGBUILD b/PKGBUILD
index f5b87f7..30ac313 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,12 @@
 # Maintainer: Łukasz Mariański <lmarianski at protonmail dot com>

 _pkgname=vscodium
-_electron=electron17
+_electron=electron19
 _nodejs='16.14.2'

 pkgname=${_pkgname}-electron
-pkgver=1.69.2
+_vscodiumtag=1.70.2.22230
+pkgver=1.70.2
 pkgrel=1
 pkgdesc="VS Code without MS branding/telemetry/licensing. - System-wide Electron edition"
 arch=('x86_64' 'aarch64' 'armv7h')
@@ -15,7 +16,7 @@ depends=("$_electron" 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
 optdepends=('x11-ssh-askpass: SSH authentication')
 makedepends=('git' 'gulp' 'python' 'yarn' 'nvm' 'imagemagick' 'ripgrep')
 conflicts=('vscodium')
-source=("git+https://github.com/VSCodium/vscodium.git#tag=${pkgver}"
+source=("git+https://github.com/VSCodium/vscodium.git#tag=${_vscodiumtag}"
        "git+https://github.com/microsoft/vscode.git#tag=${pkgver}"
        "${_pkgname}.sh"
        "${_pkgname}.js"