lora: remove "v" prefix from version

The version string must start with a digit per nixpkgs versioning guidelines
This commit is contained in:
Heitor Augusto
2025-02-10 18:49:41 -03:00
parent fc024b25c5
commit c70b85d5e0
+2 -2
View File
@@ -7,12 +7,12 @@
stdenvNoCC.mkDerivation rec {
pname = "lora";
version = "v3.005";
version = "3.005";
src = fetchFromGitHub {
owner = "cyrealtype";
repo = "lora";
rev = version;
rev = "v${version}";
hash = "sha256-EHa8DUPFRvdYBdCY41gfjKGtTHwGIXCwD9Qc+Npmt1s=";
};