devinorium-server
The source tarball comes from a GitHub releases URL (github.com/justacalico/devinorium) which is plausibly the project's own release infrastructure, and the Flutter SDK is fetched from Google's official storage; both have sha256 checksums. The local bundled files (service, sysusers, env) have SKIP'd checksums which is mildly sloppy but not dangerous. The build compiles Rust source and a Flutter web app from the project's own code — no unreviewed remote code execution, no obfuscated payloads, no exfiltration.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): The source tarball comes from a GitHub releases URL (github.com/justacalico/devinorium) which is plausibly the project's own release infrastructure, and the Flutter SDK is fetched from Google's official storage; both have sha256 checksums. The local bundled files (service, sysusers, env) have SKIP'd checksums which is mildly sloppy but not dangerous. The build compiles Rust source and a Flutter web app from the project's own code — no unreviewed remote code execution, no obfuscated payloads, no exfiltration.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:17
"flutter_linux_${_flutterver}-stable.tar.xz::https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${_flutterver}-stable.tar.xz"
PKGBUILD
1 offending line(s) highlighted# Maintainer: HttpAnimations
pkgname=devinorium-server
_pkgname=devinorium
pkgver=0.73.1
pkgrel=1
pkgdesc="Self-hosted web UI for AI coding agents - server"
arch=('x86_64')
url="https://gitlab.com/HttpAnimations/devinorium"
license=('AGPL-3.0-only')
options=('!lto')
depends=('glibc' 'gcc-libs' 'git')
makedepends=('cargo' 'git' 'unzip' 'zip' 'curl')
optdepends=('openssh: clone repositories over SSH')
backup=('etc/devinorium/devinorium.env')
_flutterver=3.44.9
source=("devinorium-v$pkgver.tar.gz::https://github.com/justacalico/devinorium/releases/download/v$pkgver/devinorium-v$pkgver-source.tar.gz"
"flutter_linux_${_flutterver}-stable.tar.xz::https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${_flutterver}-stable.tar.xz"
"devinorium.service"
"devinorium.sysusers"
"devinorium.env")
sha256sums=('83b1589af9c3c18fc5588cc37c9597b0706bc0e20d165f5eb07a0481a3335f41'
'a9120fa4a01048bdef438ddc3a2d4b7389662ea98a95db86eeaf10382bc4efcb'
'SKIP'
'SKIP'
'SKIP')
build() {
export PATH="$srcdir/flutter/bin:$PATH"
export PUB_CACHE="$srcdir/pub-cache"
export CARGO_HOME="$srcdir/cargo-home"
flutter config --no-analytics >/dev/null 2>&1 || true
flutter precache --web >/dev/null
cd "$_pkgname-$pkgver/flutter"
flutter pub get
flutter build web --release --wasm
rm -rf build/web/canvaskit
rm -rf ../frontend/dist
mkdir -p ../frontend/dist
cp -r build/web/. ../frontend/dist/
cd ..
cargo build --release --locked
}
package() {
cd "$_pkgname-$pkgver"
install -Dm755 target/release/devinorium "$pkgdir/usr/bin/devinorium-server"
install -Dm644 "$srcdir/devinorium.service" "$pkgdir/usr/lib/systemd/system/devinorium.service"
install -Dm644 "$srcdir/devinorium.sysusers" "$pkgdir/usr/lib/sysusers.d/devinorium.conf"
install -Dm600 "$srcdir/devinorium.env" "$pkgdir/etc/devinorium/devinorium.env"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-13 19:18:58 | Low | 3 |
| 2026-09-13 19:15:06 | Medium | 2 |