msgraph-cli: remove "v" prefix in 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 6600f70b44
commit ce3377bf57
+2 -2
View File
@@ -7,12 +7,12 @@
}:
buildDotnetModule rec {
pname = "msgraph-cli";
version = "v1.9.0";
version = "1.9.0";
src = fetchFromGitHub {
owner = "microsoftgraph";
repo = "msgraph-cli";
rev = version;
tag = "v${version}";
hash = "sha256-bpdxzVlQWQLNYTZHN25S6qa3NKHhDc+xV6NvzSNMVnQ=";
};