hullcaster: remove "v" prefix from version
The version string must start with a digit per nixpkgs versioning guideline.
This commit is contained in:
parent
f4b56e7f60
commit
9b40045dfb
@ -6,12 +6,12 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "hullcaster";
|
pname = "hullcaster";
|
||||||
version = "v0.1.2";
|
version = "0.1.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gilcu3";
|
owner = "gilcu3";
|
||||||
repo = "hullcaster";
|
repo = "hullcaster";
|
||||||
rev = version;
|
tag = "v${version}";
|
||||||
hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc=";
|
hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user