msgraph-cli: remove "v" prefix in version

The version string must start with a digit per nixpkgs versioning guidelines.

+2 -2
+2 -2
pkgs/by-name/ms/msgraph-cli/package.nix
··· 7 7 }: 8 8 buildDotnetModule rec { 9 9 pname = "msgraph-cli"; 10 - version = "v1.9.0"; 10 + version = "1.9.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "microsoftgraph"; 14 14 repo = "msgraph-cli"; 15 - rev = version; 15 + tag = "v${version}"; 16 16 hash = "sha256-bpdxzVlQWQLNYTZHN25S6qa3NKHhDc+xV6NvzSNMVnQ="; 17 17 }; 18 18