jellium-desktop-git-bin
maintainer annikablomqvist
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own git source, which is normal for AUR; the low severity is due to few votes and recent upload, not malicious content.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from the project's own git source, which is normal for AUR; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: Andrew Rabert <ar@nullsum.net>
2
pkgname=jellium-desktop-git-bin
3
pkgver=0.r1069.e672351
4
pkgrel=1
5
license=('GPL-2.0-only')
6
pkgdesc="A Jellyfin Desktop Client"
7
arch=('x86_64')
8
url="https://github.com/andrewrabert/jellium-desktop"
9
depends=(
10
'cef'
11
'libglvnd'
12
'libxcb'
13
'libxkbcommon'
14
'libxkbcommon-x11'
15
'mpv'
16
'wayland'
17
'xdg-utils'
18
)
19
makedepends=(
20
'clang'
21
'git'
22
'rust'
23
)
24
provides=('jellium-desktop')
25
conflicts=('jellium-desktop')
26
source=("git+${url}.git" 'generator')
27
sha256sums=('SKIP')
28
options=(!debug !lto)
29
30
pkgver() {
31
cd jellium-desktop
32
printf "0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
33
}
34
35
build() {
36
sudo "$srcdir/generator"
37
cd jellium-desktop
38
cargo xtask build \
39
--cef-path /usr/lib/cef \
40
--external-mpv /usr \
41
--out build
42
}
43
44
package() {
45
cd jellium-desktop
46
47
# Main binary
48
install -Dm755 build/jellium-desktop "$pkgdir/usr/bin/jellium-desktop"
49
50
# Icon
51
install -Dm644 resources/linux/net.nullsum.JelliumDesktop.svg \
52
"$pkgdir/usr/share/icons/hicolor/scalable/apps/net.nullsum.JelliumDesktop.svg"
53
54
# Desktop entry
55
install -Dm644 resources/linux/net.nullsum.JelliumDesktop.desktop \
56
"$pkgdir/usr/share/applications/net.nullsum.JelliumDesktop.desktop"
57
58
# License
59
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/jellium-desktop-git-bin/LICENSE"
60
}
61
62
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 11:20:22 | LOW | 2 |