hydebar
LOW
maintainer RAprogramm
0 votes
scanned 2026-09-02 01:49:31.609352
Why flagged
The package builds from source hosted on the project's official GitHub repository; the only concern is the skipped checksum, which reduces verifiability but does not introduce active malicious behavior.
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 95%): The package builds from source hosted on the project's official GitHub repository; the only concern is the skipped checksum, which reduces verifiability but does not introduce active malicious behavior.
PKGBUILD
1
# Maintainer: RAprogramm <andrey.rozanov.vl@gmail.com>
2
pkgname=hydebar
3
pkgver=0.1.3
4
pkgrel=1
5
pkgdesc="Status bar for Hyprland, themed by the HyDE desktop"
6
arch=('x86_64')
7
url="https://github.com/HyDE-Project/hydebar"
8
license=('GPL-3.0-or-later')
9
depends=(
10
'dbus'
11
'libpulse'
12
'pipewire'
13
'wayland'
14
'xkbcommon'
15
)
16
makedepends=(
17
'cargo'
18
'clang'
19
'llvm'
20
'pkg-config'
21
'rust>=1.98'
22
)
23
source=("$pkgname-$pkgver.tar.gz::https://github.com/HyDE-Project/hydebar/archive/v$pkgver.tar.gz")
24
sha256sums=('SKIP')
25
26
prepare() {
27
cd "$pkgname-$pkgver"
28
export RUSTUP_TOOLCHAIN=stable
29
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host://p')"
30
}
31
32
build() {
33
cd "$pkgname-$pkgver"
34
export RUSTUP_TOOLCHAIN=stable
35
export CARGO_TARGET_DIR=target
36
cargo build --release --locked --all-features
37
}
38
39
check() {
40
cd "$pkgname-$pkgver"
41
cargo test --release --locked --all-features
42
}
43
44
package() {
45
cd "$pkgname-$pkgver"
46
47
# Install binary
48
install -Dm755 target/release/hydebar "$pkgdir/usr/bin/hydebar"
49
50
# Install theme switch script
51
install -Dm755 scripts/theme-switch "$pkgdir/usr/bin/hydebar-theme-switch"
52
53
# Install D-Bus service file
54
install -Dm644 assets/dbus/org.freedesktop.Notifications.service \
55
"$pkgdir/usr/share/dbus-1/services/org.freedesktop.Notifications.service"
56
57
# Install documentation
58
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
59
60
# Install licenses
61
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
62
install -Dm644 LICENSE.MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE.MIT"
63
}
64
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-02 01:49:31 | Low | 2 |