gede: remove "v" prefix from version

The version string must start with a digit per nixpkgs versioning guideline.
This commit is contained in:
Heitor Augusto
2025-02-10 18:49:42 -03:00
parent a84b1a09e2
commit c24c2a6e04
+2 -2
View File
@@ -13,12 +13,12 @@
mkDerivation rec {
pname = "gede";
version = "v2.22.1";
version = "2.22.1";
src = fetchFromGitHub {
owner = "jhn98032";
repo = "gede";
rev = version;
tag = "v${version}";
hash = "sha256-6YSrqLDuV4G/uvtYy4vzbwqrMFftMvZdp3kr3R436rs=";
};