lazyide-git
LOW
maintainer kekmacska
0 votes
scanned 2026-09-21 17:35:47.897038
Why flagged
The package builds from a public Git repository with a SKIP'd checksum, but it is a legitimate source for a development version; no untrusted binaries or remote code execution are involved.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Low
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a public Git repository with a SKIP'd checksum, but it is a legitimate source for a development version; no untrusted binaries or remote code execution are involved.
PKGBUILD
1
pkgname=lazyide-git
2
pkgver=0.3.94.r0.g0188662
3
pkgrel=1
4
pkgdesc="A full IDE experience anywhere you have a terminal. SSH into a server, run lazyide, and pair with your agentic coding tool"
5
arch=('any')
6
url="tysonlabs.dev"
7
license=('MIT')
8
optdepends=(
9
'rust-analyzer: LSP completions, diagnostics, go-to-definition'
10
'ripgrep: Project-wide search'
11
'git: Branch display, gutter markers'
12
)
13
makedepends=('git' 'rust' 'cargo' 'jaq')
14
source=("git+https://github.com/TysonLabs/lazyide.git")
15
sha256sums=('SKIP')
16
17
pkgver() {
18
cd "${pkgname%-*}"
19
git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g;s/v//g'
20
}
21
22
prepare() {
23
cd "${pkgname%-*}"
24
for file in themes/*.json; do
25
jaq -c . "$file" > "$file.tmp" && mv "$file.tmp" "$file"
26
done
27
}
28
29
build() {
30
cd "${pkgname%-*}"
31
32
export RUSTFLAGS="\
33
-C opt-level=3 \
34
-C target-cpu=native \
35
-C embed-bitcode=yes \
36
-C codegen-units=1 \
37
-C strip=symbols \
38
-C relocation-model=pic \
39
-C link-arg=-fuse-ld=lld \
40
-C link-arg=-Wl,--icf=safe \
41
-C link-arg=-Wl,--gc-sections \
42
-C link-arg=-Wl,--as-needed \
43
-C link-arg=-Wl,-O3 \
44
-C link-arg=-fno-plt \
45
"
46
cargo build --release
47
}
48
49
package() {
50
cd "${pkgname%-*}"
51
52
# Install executable
53
install -Dm755 "target/release/${pkgname%-*}" "$pkgdir/usr/bin/${pkgname%-*}"
54
55
# Install license
56
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname%-*}/LICENSE"
57
58
# Install themes
59
install -Dm644 themes/*.json -t "$pkgdir/usr/local/share/${pkgname%-*}/themes"
60
}
61
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-21 17:35:47 | Low | 2 |