hyprdeck
CLEAN
maintainer maravexa
0 votes
scanned 2026-09-03 00:15:47.366177
Triggered rules
Clean
AI review downgraded a static finding
llm_review
The static rules flagged this LOW, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it CLEAN (confidence 95%): The package builds from source hosted on the maintainer's GitHub repository, which is standard for AUR packages; all dependencies and sources are clearly declared and the build process is transparent and safe.
1 higher static finding superseded - not the current verdict (shown for transparency)
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.
PKGBUILD
1
# Maintainer: Mara Vexa <me@maravexa.com>
2
pkgname=hyprdeck
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="A Wayland-native panel, taskbar, and dock for Hyprland"
6
arch=('x86_64')
7
url="https://github.com/maravexa/hyprdeck"
8
license=('MIT')
9
# GCC LTO objects from ring are not linkable by Rust toolchains configured
10
# with LLVM's lld. Rust's release profile still performs its own optimization.
11
options=('!lto')
12
depends=(
13
'fontconfig'
14
'libxkbcommon'
15
'wayland'
16
)
17
makedepends=(
18
'cargo'
19
'rust'
20
)
21
optdepends=(
22
'hyprland: compositor integration'
23
'hyprlock: default lock action'
24
'hyprcube: settings launcher module'
25
'wireplumber: wpctl sound control backend'
26
'wofi: default application menu action'
27
)
28
source=("$pkgname-$pkgver.tar.gz::https://github.com/maravexa/hyprdeck/archive/v$pkgver.tar.gz")
29
# Replace with `updpkgsums` after the release tag is available.
30
sha256sums=('5be136df342c768a8837d57ed52550955aeb06a3399eda178e34a9f339b3e996')
31
32
prepare() {
33
cd "$pkgname-$pkgver"
34
export RUSTUP_TOOLCHAIN=stable
35
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
36
}
37
38
build() {
39
cd "$pkgname-$pkgver"
40
export RUSTUP_TOOLCHAIN=stable
41
cargo build --release --locked -p hyprdeck
42
}
43
44
package() {
45
cd "$pkgname-$pkgver"
46
install -Dm755 target/release/hyprdeck "$pkgdir/usr/bin/hyprdeck"
47
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
48
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-03 00:15:47 | Clean | 2 |
| 2026-09-02 21:51:32 | Low | 1 |