Package Details: code-server 4.121.0-1

Git Clone URL: https://aur.archlinux.org/code-server.git (read-only, click to copy)
Package Base: code-server
Description: VS Code in the browser
Upstream URL: https://github.com/coder/code-server
Keywords: code coder.com visual-studio-code vscode
Licenses: MIT
Submitter: hvksmr1996
Maintainer: coadler (ash, cdrci)
Last Packager: ash
Votes: 25
Popularity: 0.001710
First Submitted: 2019-03-11 14:32 (UTC)
Last Updated: 2026-05-20 23:39 (UTC)

Latest Comments

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

jadenPete commented on 2020-07-04 00:01 (UTC) (edited on 2020-07-05 16:55 (UTC) by jadenPete)

When installed, /usr/lib/systemd/user/code-server.service is a severed symbolic link. Could you please fix this?

02strich commented on 2020-05-31 04:56 (UTC) (edited on 2020-05-31 04:56 (UTC) by 02strich)

Had a similar problem with the service file and replaced the respective lines with install commands. Otherwise very nice - thank you

coadler commented on 2020-05-20 03:24 (UTC)

Fixed. Thanks

ava1ar commented on 2020-05-17 15:18 (UTC) (edited on 2020-05-17 15:19 (UTC) by ava1ar)

Replace line 21 in PKGBUILD with

ln -s /opt/$pkgname/code-server $pkgdir/usr/bin/$pkgname

Symlink you are creating now is invalid and points to the build location, not to the binary in /opt.

ben0mega commented on 2020-04-03 02:22 (UTC)

Took a stab at writing a new pkgbuild for the new download location:

# https://github.com/cdr/code-server/releases/download/3.0.2/code-server-3.0.2-linux-x86_64.tar.gz
pkgname=code-server
pkgver="3.0.2"
pkgrel=0
pkgdesc="Run VS Code on a remote server"
arch=('x86_64')
url="https://github.com/cdr/code-server"
license=(MIT)
depends=(glibc)
_dirname=code-server-${pkgver}-linux-x86_64
source=(${url}/releases/download/${pkgver}/${_dirname}.tar.gz)
sha512sums=('c581a7fed4448a539bc5aed6d756cf9f98fca545e3e4c8a28b9b5554b8174a07fbd07cb4f3e0eec09040af58838cf7e86cd92a5b11ecb14d2a8316b5de4401de')
options=('!strip')

package() {
  cd "$srcdir"/"${_dirname}"
  find . -type f -exec install -Dm 755 "{}" "$pkgdir/opt/$pkgname/{}" \;
  mkdir -p $pkgdir/usr/bin/
  ln -s $pkgdir/opt/$pkgname/code-server $pkgdir/usr/bin/$pkgname
  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

coadler commented on 2019-09-17 20:43 (UTC)

@EnKrypt should be good now.

coadler commented on 2019-09-17 20:36 (UTC)

My bad. Didn't realize Asher was testing auto publishing on CI and he removed them. Will fix

EnKrypt commented on 2019-09-17 20:33 (UTC)

Odd. Looks like a release was unpublished from Github, causing this repo to point to an invalid source.

curl: (22) The requested URL returned error: 404 Not Found
==> ERROR: Failure while downloading https://github.com/cdr/code-server/releases/download/2.1495-vsc1.38.1/code-server2.1495-vsc1.38.1-linux-x86_64.tar.gz
    Aborting...
Error downloading sources: code-server

tinywrkb commented on 2019-07-10 11:28 (UTC)

Cool, though build time isn't bad at all. Keep in mind that users of Arch Linux ARM and x86 derivatives are also fetching and building AUR packages.

coadler commented on 2019-07-09 20:31 (UTC)

@tinywrkb, thanks! I was planning to update this to build from source soon-ish, but unfortunately there are still a few blockers. The most important of these being the compile time. We plan to get that down to around 10-15 seconds which is when I will update this to compile from source. Will definitely use your diff when the time comes :)