gnomeExtensions.pano: remove "v" prefix in version

The version string must start with a digit per nixpkgs versioning guideline.
This commit is contained in:
Heitor Augusto
2025-02-10 18:31:51 -03:00
parent c4ea434f1b
commit 9a9523f75e

View File

@@ -144,9 +144,9 @@ super: lib.trivial.pipe super [
}))
(patchExtension "pano@elhan.io" (final: prev: {
version = "v23-alpha3";
version = "23-alpha3";
src = fetchzip {
url = "https://github.com/oae/gnome-shell-pano/releases/download/${final.version}/pano@elhan.io.zip";
url = "https://github.com/oae/gnome-shell-pano/releases/download/v${final.version}/pano@elhan.io.zip";
hash = "sha256-LYpxsl/PC8hwz0ZdH5cDdSZPRmkniBPUCqHQxB4KNhc=";
stripRoot = false;
};