mise-musl-bin
Downloads official prebuilt musl binaries from the project's own GitHub releases with pinned SHA256 checksums; the flagged 'self-update' concern is actually a disable-self-update sentinel file, which is correct pacman packaging practice; running the binary to generate completions is standard and low-risk.
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 80%): Downloads official prebuilt musl binaries from the project's own GitHub releases with pinned SHA256 checksums; the flagged 'self-update' concern is actually a disable-self-update sentinel file, which is correct pacman packaging practice; running the binary to generate completions is standard and low-risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
privileged_install
The package grants elevated privileges or installs an update path outside pacman: a /etc/sudoers.d rule (often passwordless), a setuid/setgid binary, or a self-update script/service that can fetch and run future code with no checksum verification. The initial install may be verified, but the ongoing privilege + update surface is a real supply-chain / privilege-escalation risk.
-
PKGBUILD:27
install -Dm644 /dev/null "${pkgdir}/usr/lib/mise/.disable-self-update"
PKGBUILD
1 offending line(s) highlighted# Maintainer: czyt <czytcn@gmail.com>
pkgname=mise-musl-bin
pkgver=2026.8.14
pkgrel=2
pkgdesc="Portable musl build of mise: dev tools, env vars, task runner"
arch=('x86_64' 'aarch64')
url="https://github.com/jdx/mise"
license=('MIT')
options=('!debug')
optdepends=(
'bash-completion: bash completion support'
'fish: fish completion and automatic environment activation'
'zsh: zsh completion support'
)
provides=('mise')
conflicts=('mise' 'mise-bin' 'rtx')
replaces=('rtx')
source_x86_64=("https://github.com/jdx/mise/releases/download/v${pkgver}/mise-v${pkgver}-linux-x64-musl.tar.xz")
source_aarch64=("https://github.com/jdx/mise/releases/download/v${pkgver}/mise-v${pkgver}-linux-arm64-musl.tar.xz")
sha256sums_x86_64=('d04e9d8841cb291f31681b0ef304453d41ee7367c23dc431bba3406cdf3f1bce')
sha256sums_aarch64=('9186ee7019902572bb4fc1f48cc8f48cafe3c19a75d63484ebd1e79c2f5698a0')
package() {
install -Dm755 "${srcdir}/mise/bin/mise" "${pkgdir}/usr/bin/mise"
# disable mise self-update (managed by pacman)
install -Dm644 /dev/null "${pkgdir}/usr/lib/mise/.disable-self-update"
# man page
install -Dm644 "${srcdir}/mise/man/man1/mise.1" "${pkgdir}/usr/share/man/man1/mise.1"
# fish automatically loads both vendor completions and vendor conf files.
install -d "${pkgdir}/usr/share/fish/vendor_completions.d"
"${srcdir}/mise/bin/mise" completion fish > "${pkgdir}/usr/share/fish/vendor_completions.d/mise.fish"
install -Dm644 "${srcdir}/mise/share/fish/vendor_conf.d/mise-activate.fish" "${pkgdir}/usr/share/fish/vendor_conf.d/mise-activate.fish"
# Generate bash and zsh completions from the same versioned binary.
install -d "${pkgdir}/usr/share/bash-completion/completions"
"${srcdir}/mise/bin/mise" completion bash > "${pkgdir}/usr/share/bash-completion/completions/mise"
install -d "${pkgdir}/usr/share/zsh/site-functions"
"${srcdir}/mise/bin/mise" completion zsh > "${pkgdir}/usr/share/zsh/site-functions/_mise"
# license
install -Dm644 "${srcdir}/mise/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# docs
install -Dm644 "${srcdir}/mise/README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-26 11:31:48 | Low | 3 |
| 2026-08-26 11:30:20 | Medium | 2 |