This commit is contained in:
mjallen18
2026-03-23 17:26:01 -05:00
parent 0b9a301a92
commit 068d6c8f94
5 changed files with 256 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
stdenvNoCC,
lib,
...
}:
stdenvNoCC.mkDerivation {
pname = "gnome-nebula-vpn";
version = "1.0.0";
src = ./extension;
installPhase = ''
runHook preInstall
uuid="nebula-vpn-status@mjallen"
dest="$out/share/gnome-shell/extensions/$uuid"
mkdir -p "$dest"
cp -r . "$dest/"
runHook postInstall
'';
meta = {
description = "GNOME Shell extension showing Nebula VPN status with interface info and a toggle";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}