hullcaster: 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:08:42 -03:00
parent f4b56e7f60
commit 9b40045dfb
No known key found for this signature in database

View File

@ -6,12 +6,12 @@
rustPlatform.buildRustPackage rec {
pname = "hullcaster";
version = "v0.1.2";
version = "0.1.2";
src = fetchFromGitHub {
owner = "gilcu3";
repo = "hullcaster";
rev = version;
tag = "v${version}";
hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc=";
};