seance
maintainer msd
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a source tarball from the project's GitHub release and a Zig toolchain from the official ziglang.org domain; both are legitimate and expected for building, despite the non-whitelisted host flag.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a source tarball from the project's GitHub release and a Zig toolchain from the official ziglang.org domain; both are legitimate and expected for building, despite the non-whitelisted host flag.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
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:41
"zig-$_zigver.tar.xz::https://ziglang.org/download/$_zigver/zig-x86_64-linux-$_zigver.tar.xz"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Dániel Sipka <no1msd@users.noreply.github.com>
2
pkgname=seance
3
pkgver=0.1.4
4
pkgrel=2
5
pkgdesc='Scrolling terminal multiplexer for running multiple AI coding agents side by side'
6
arch=('x86_64')
7
url='https://github.com/no1msd/seance'
8
license=('MIT')
9
depends=(
10
'gtk4'
11
'libadwaita'
12
'libnotify'
13
'libcanberra'
14
'libx11'
15
'wayland'
16
'libglvnd'
17
'fontconfig'
18
'glib2'
19
'pango'
20
'cairo'
21
'bash'
22
'hicolor-icon-theme'
23
'freetype2'
24
'harfbuzz'
25
'oniguruma'
26
)
27
makedepends=(
28
'ncurses'
29
'pkg-config'
30
)
31
32
options=(!debug)
33
34
# Séance and its bundled ghostty submodule pin minimum_zig_version 0.15.2 and
35
# do not build with Zig 0.16+. Arch's 'zig' package tracks the latest release,
36
# so vendor the exact toolchain instead of depending on whatever is current.
37
_zigver=0.15.2
38
39
source=(
40
"$pkgname-$pkgver-src.tar.gz::$url/releases/download/v$pkgver/$pkgname-$pkgver-src.tar.gz"
41
"zig-$_zigver.tar.xz::https://ziglang.org/download/$_zigver/zig-x86_64-linux-$_zigver.tar.xz"
42
)
43
sha256sums=(
44
'e6286ae2e073dece24c505474506d59a10f763fd46f34433ce8b9650be38f739'
45
'02aa270f183da276e5b5920b1dac44a63f1a49e55050ebde3aecc9eb82f93239'
46
)
47
48
prepare() {
49
cd "$pkgname-$pkgver"
50
ZIG_GLOBAL_CACHE_DIR="$srcdir/zig-cache" \
51
PATH="$srcdir/zig-x86_64-linux-$_zigver:$PATH" \
52
./ghostty/nix/build-support/fetch-zig-cache.sh
53
}
54
55
build() {
56
cd "$pkgname-$pkgver"
57
ZIG_GLOBAL_CACHE_DIR="$srcdir/zig-cache" \
58
"$srcdir/zig-x86_64-linux-$_zigver/zig" build \
59
-p "$srcdir/out" \
60
--system "$srcdir/zig-cache/p" \
61
-Doptimize=ReleaseSafe \
62
-Dstrip=true
63
}
64
65
package() {
66
install -d "$pkgdir/usr"
67
cp -r "$srcdir/out"/* "$pkgdir/usr/"
68
install -Dm644 "$pkgname-$pkgver/LICENSE" \
69
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
70
71
# Avoid file conflicts with ghostty and ncurses packages.
72
install -d "$pkgdir/usr/share/seance"
73
mv "$pkgdir/usr/share/ghostty" "$pkgdir/usr/share/seance/ghostty"
74
mv "$pkgdir/usr/share/terminfo" "$pkgdir/usr/share/seance/terminfo"
75
}
76
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |