midnight-shell-git
maintainer deadly
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
Package builds from a legitimate project Git repository, uses SKIP due to VCS nature, and installs only compiled artifacts; no remote code execution or malicious payloads detected.
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%): Package builds from a legitimate project Git repository, uses SKIP due to VCS nature, and installs only compiled artifacts; no remote code execution or malicious payloads detected.
PKGBUILD
1
# Maintainer: deeadly (DC only)
2
3
pkgname='midnight-shell-git'
4
_pkgname='midnight-shell'
5
pkgver=r3082.aa0009e
6
pkgrel=1
7
pkgdesc="DiM's fork of Caelestia-Shell"
8
arch=('x86_64' 'aarch64')
9
url='https://github.com/dim-ghub/midnight-shell.git'
10
license=('GPL-3.0-only')
11
12
depends=(
13
'bash'
14
'fish'
15
'glibc'
16
'gcc-libs'
17
'qt6-base'
18
'qt6-declarative'
19
'qt6-imageformats'
20
'qt6-multimedia'
21
'protobuf'
22
'midnight-cli'
23
'quickshell-git'
24
'ddcutil'
25
'brightnessctl'
26
'libcava'
27
'networkmanager'
28
'lm_sensors'
29
'aubio'
30
'libpipewire'
31
'ttf-material-symbols-variable'
32
'power-profiles-daemon'
33
'ttf-rubik-vf'
34
'ttf-cascadia-code-nerd'
35
'swappy'
36
'libqalculate'
37
)
38
39
makedepends=(
40
'git'
41
'cmake'
42
'ninja'
43
'qt6-shadertools'
44
)
45
46
provides=(
47
"${_pkgname}=${pkgver}"
48
"caelestia-shell=${pkgver}"
49
"caelestia-shell-git=${pkgver}"
50
)
51
conflicts=(
52
"${_pkgname}"
53
'dim-caelestia-shell-git'
54
'caelestia-shell'
55
'caelestia-shell-git'
56
'noctalia-qs'
57
'noctalia-qs-git'
58
'dim-caelestia-shell-git-debug'
59
)
60
replaces=('dim-caelestia-shell-git')
61
62
source=("${pkgname}::git+https://github.com/dim-ghub/midnight-shell.git")
63
sha256sums=('SKIP')
64
65
pkgver() {
66
cd "${srcdir}/${pkgname}"
67
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
68
}
69
70
build() {
71
cd "${srcdir}/${pkgname}"
72
73
cmake -B build -G Ninja \
74
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
75
-DCMAKE_INSTALL_PREFIX=/ \
76
-DVERSION="$(git describe --tags --abbrev=0 2>/dev/null | sed 's/^v//')" \
77
-DGIT_REVISION="$(git rev-parse --short HEAD)" \
78
-DDISTRIBUTOR="AUR (package: $pkgname)"
79
cmake --build build
80
}
81
82
package() {
83
cd "${srcdir}/${pkgname}"
84
85
DESTDIR="$pkgdir" cmake --install build
86
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
87
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 03:35:16 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 09:32:18 | LOW | 2 |