devinorium-git
The Flutter SDK is downloaded from the official Google storage.googleapis.com/flutter_infra_release CDN with a provided checksum; the project source is built from its own GitLab repo via cargo and flutter; the .desktop and .svg files are local bundled data with SKIP'd checksums but are non-executable; no obfuscated payloads, exfiltration, or untrusted prebuilt binaries are present — the SKIP'd checksums on data files and the git source are mildly sloppy but not dangerous.
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 Flutter SDK is downloaded from the official Google storage.googleapis.com/flutter_infra_release CDN with a provided checksum; the project source is built from its own GitLab repo via cargo and flutter; the .desktop and .svg files are local bundled data with SKIP'd checksums but are non-executable; no obfuscated payloads, exfiltration, or untrusted prebuilt binaries are present — the SKIP'd checksums on data files and the git source are mildly sloppy but not dangerous.
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:20
"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-git
_pkgname=devinorium
pkgver=0.73.1.r8.g8493297
pkgrel=1
pkgdesc="Self-hosted web UI for AI coding agents - desktop client (git build)"
arch=('x86_64')
url="https://gitlab.com/HttpAnimations/devinorium"
license=('AGPL-3.0-only')
options=('!lto')
depends=('gtk3' 'glibc' 'gcc-libs' 'git')
makedepends=('cargo' 'git' 'clang' 'cmake' 'ninja' 'pkgconf' 'unzip' 'zip' 'curl')
optdepends=('openssh: clone repositories over SSH'
'xdg-utils: open URLs from the app'
'zenity: native file dialogs')
provides=('devinorium')
conflicts=('devinorium')
_flutterver=3.44.9
source=("git+https://gitlab.com/HttpAnimations/devinorium.git"
"flutter_linux_${_flutterver}-stable.tar.xz::https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_${_flutterver}-stable.tar.xz"
"devinorium.desktop"
"devinorium.svg")
sha256sums=('SKIP'
'a9120fa4a01048bdef438ddc3a2d4b7389662ea98a95db86eeaf10382bc4efcb'
'SKIP'
'SKIP')
pkgver() {
cd "$_pkgname"
local ver
ver=$(git describe --long --tags 2>/dev/null || true)
if [ -n "$ver" ]; then
printf '%s' "$ver" | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
else
printf '0.0.0.r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
fi
}
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 --linux >/dev/null
# Server binary bundled into the desktop app. The app drives it over the API,
# so the placeholder web frontend is enough here.
cd "$_pkgname"
cargo build --release --locked
cd flutter
flutter pub get
flutter build linux --release
install -Dm755 ../target/release/devinorium build/linux/x64/release/bundle/server/devinorium
}
package() {
cd "$_pkgname"
install -d "$pkgdir/opt/devinorium"
cp -a flutter/build/linux/x64/release/bundle/. "$pkgdir/opt/devinorium/"
install -d "$pkgdir/usr/bin"
ln -s /opt/devinorium/devinorium_frontend "$pkgdir/usr/bin/devinorium"
install -Dm644 "$srcdir/devinorium.desktop" "$pkgdir/usr/share/applications/devinorium.desktop"
install -Dm644 "$srcdir/devinorium.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/devinorium.svg"
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 |