ninfer-git
The package builds from a public Git repository with a SKIP'd checksum, which is common for git packages; it compiles the project's own source code for a specific GPU architecture, posing no inherent danger beyond typical AUR packages with low votes and recent upload.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from a public Git repository with a SKIP'd checksum, which is common for git packages; it compiles the project's own source code for a specific GPU architecture, posing no inherent danger beyond typical AUR packages with low votes and recent upload.
PKGBUILD
# Maintainer: kelvie <kelvie@kelvie.ca>
# NOTE: NInfer is compiled exclusively for sm_120a (NVIDIA GeForce RTX 50 series and RTX PRO Blackwell cards, e.g. RTX PRO 6000 Blackwell).
# It will build on any machine with the CUDA toolkit, but the binaries will
# only run on sm_120a hardware.
pkgname=ninfer-git
_pkgbase=ninfer
pkgver=20260818.ga99407c
pkgrel=1
pkgdesc="High-performance single-GPU inference engine for registered Qwen checkpoints (sm_120a only)"
arch=(x86_64)
url="https://github.com/Neroued/ninfer"
license=(Apache-2.0)
depends=(
curl
cuda-toolkit
ffmpeg
gcc-libs
glibc
nvidia-utils
)
makedepends=(
cmake
curl
cuda-toolkit
ffmpeg
git
ninja
pkgconf
)
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
# No upstream tags; use date + short hash of the default branch HEAD.
printf "%s.g%s" \
"$(date +%Y%m%d)" \
"$(git ls-remote "${url}.git" HEAD | cut -c1-7)"
}
build() {
cmake -S "${_pkgbase}" -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CUDA_ARCHITECTURES=120a \
-DNINFER_BUILD_APPS=ON
cmake --build build
}
package() {
# Upstream has no install target; install from the build tree.
install -Dm755 -t "${pkgdir}/usr/bin" \
"build/apps/ninfer" \
"build/apps/ninfer-serve"
install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
"${srcdir}/${_pkgbase}/LICENSE" \
"${srcdir}/${_pkgbase}/README.md"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 05:16:50 | Low | 2 |