nimlangserver-git
maintainer dylanogroote
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's official Git repository, which is a normal AUR practice; the recent maintainer change is noted but does not imply malicious activity.
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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from the project's official Git repository, which is a normal AUR practice; the recent maintainer change is noted but does not imply malicious activity.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: exu <aur _a_ frm01 _d_ net>
2
3
pkgname=nimlangserver-git
4
pkgver=v1.12.0.r13.gaa4be4c
5
pkgrel=1
6
pkgdesc=""
7
arch=('x86_64')
8
url="https://github.com/nim-lang/langserver"
9
license=('MIT')
10
depends=('nim>=2.0.0')
11
makedepends=('git')
12
provides=("${pkgname%-git}")
13
conflicts=("${pkgname%-git}")
14
source=("${pkgname%-git}::git+$url.git")
15
sha256sums=('SKIP')
16
17
pkgver() {
18
cd "$srcdir/${pkgname%-git}"
19
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
20
}
21
22
build() {
23
# change into source
24
cd "$srcdir/${pkgname%-git}"
25
# compile program
26
nimble build
27
}
28
29
check() {
30
# change into source
31
cd "$srcdir/${pkgname%-git}"
32
# run all tests
33
nimble test
34
}
35
36
package() {
37
# create our target filestructure
38
mkdir -p "$pkgdir/usr/bin"
39
# copy executable
40
install -Dm755 "$srcdir/${pkgname%-git}/${pkgname%-git}" "$pkgdir/usr/bin/${pkgname%-git}"
41
# copy license file
42
install -Dm644 "$srcdir/${pkgname%-git}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
43
}
44
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 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |