hydebar

LOW
maintainer RAprogramm 0 votes scanned 2026-09-02 01:49:31.609352
View on AUR
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>
2pkgname=hydebar
3pkgver=0.1.3
4pkgrel=1
5pkgdesc="Status bar for Hyprland, themed by the HyDE desktop"
6arch=('x86_64')
7url="https://github.com/HyDE-Project/hydebar"
8license=('GPL-3.0-or-later')
9depends=(
10 'dbus'
11 'libpulse'
12 'pipewire'
13 'wayland'
14 'xkbcommon'
15)
16makedepends=(
17 'cargo'
18 'clang'
19 'llvm'
20 'pkg-config'
21 'rust>=1.98'
22)
23source=("$pkgname-$pkgver.tar.gz::https://github.com/HyDE-Project/hydebar/archive/v$pkgver.tar.gz")
24sha256sums=('SKIP')
25
26prepare() {
27 cd "$pkgname-$pkgver"
28 export RUSTUP_TOOLCHAIN=stable
29 cargo fetch --locked --target "$(rustc -vV | sed -n 's/host://p')"
30}
31
32build() {
33 cd "$pkgname-$pkgver"
34 export RUSTUP_TOOLCHAIN=stable
35 export CARGO_TARGET_DIR=target
36 cargo build --release --locked --all-features
37}
38
39check() {
40 cd "$pkgname-$pkgver"
41 cargo test --release --locked --all-features
42}
43
44package() {
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)SeverityRules
2026-09-02 01:49:31 Low 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion