lora: remove "v" prefix from version
The version string must start with a digit per nixpkgs versioning guidelines
This commit is contained in:
@@ -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=";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user