Package Details: github-desktop-bin 3.3.12_linux2-1

Git Clone URL: https://aur.archlinux.org/github-desktop-bin.git (read-only, click to copy)
Package Base: github-desktop-bin
Description: GUI for managing Git and GitHub.
Upstream URL: https://desktop.github.com
Licenses: MIT
Conflicts: github-desktop
Provides: github-desktop
Submitter: immackay
Maintainer: fanninpm (shiftkey)
Last Packager: fanninpm
Votes: 50
Popularity: 0.25
First Submitted: 2018-08-01 14:12 (UTC)
Last Updated: 2024-04-01 02:22 (UTC)

Pinned Comments

fanninpm commented on 2022-04-05 00:18 (UTC)

ATTN: The hard dependency on gnome-keyring has finally been relaxed. I have not tested this thoroughly; your mileage may vary.

immackay commented on 2019-10-04 23:52 (UTC)

For whom it may concern: this package depends on Shiftkey's linux support fork, located at https://github.com/shiftkey/desktop/

I check this regularly for releases. If you want the newest version, I suggest you check out github-desktop-git and modify the PKGBUILD to use the base repository, with the understanding that the application takes a significant amount of RAM to build.

Latest Comments

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

archisman commented on 2020-08-18 05:29 (UTC)

Is it possible to install this in armhf or arm64 (Raspberry Pi)?

petko10 commented on 2020-06-23 09:51 (UTC)

As Elanzer pointed out the PKGBUILD needs to be updated because the binary is one directory deeper. I guess this is the problematic line: printf "#!/bin/sh\n\n/opt/${_pkgname}/github-desktop \"\$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}" Where the actual binary location is /opt/github-desktop/github-desktop/github-desktop The other way around is to manually replace the symlink to said bianry.

Elanzer commented on 2020-06-13 21:58 (UTC) (edited on 2020-06-13 22:01 (UTC) by Elanzer)

I had to update /usr/bin/github-desktop script to /opt/github-desktop/github-desktop/github-desktop "$@", because it was pointing to the directory.

serkonda7 commented on 2020-05-14 20:49 (UTC)

Is gnome-keyring actually needed? Because GitHub Desktop just starts even if I enter a wrong keyring password.

Filip98 commented on 2020-04-01 20:52 (UTC)

gnome-keyring is an optional dependency on the non-bin version but a required one here?

sweil commented on 2020-03-04 22:00 (UTC)

Attempting to run yields

[11378:0304/135030.607839:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /opt/github-desktop/chrome-sandbox is owned by root and has mode 4755.
/usr/bin/github-desktop: line 3: 11378 Trace/breakpoint trap   (core dumped) /opt/github-desktop/github-desktop "$@"

Addressed by running

cd /opt/github-desktop
sudo chown root chrome-sandbox 
sudo chmod 4755 chrome-sandbox

immackay commented on 2019-10-04 23:52 (UTC)

For whom it may concern: this package depends on Shiftkey's linux support fork, located at https://github.com/shiftkey/desktop/

I check this regularly for releases. If you want the newest version, I suggest you check out github-desktop-git and modify the PKGBUILD to use the base repository, with the understanding that the application takes a significant amount of RAM to build.

jfernandz commented on 2019-01-17 02:39 (UTC)

@immackay, likely you must update your .SRCINFO, cause yay is giving me a warning about my github-desktop-bin version is newer than AUR

LeaveAThousand commented on 2018-12-22 19:12 (UTC)

Should change line 29 of PKGBUILD to:

printf "#!/bin/sh\n\nLD_PRELOAD=/usr/lib/libcurl-openssl-1.0.so /opt/${_pkgname}/github-desktop \"\$@\"\n" | install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}" }