influxdb: remove "v" prefix in version in libflux

The version string must start with a digit per nixpkgs versioning guidelines.
This commit is contained in:
Heitor Augusto
2025-02-10 19:49:47 -03:00
parent 9a9523f75e
commit df198feb81

View File

@@ -16,11 +16,11 @@ let
# This is copied from influxdb2 with the required flux version
flux = rustPlatform.buildRustPackage rec {
pname = "libflux";
version = "v${libflux_version}";
version = libflux_version;
src = fetchFromGitHub {
owner = "influxdata";
repo = "flux";
rev = "v${libflux_version}";
tag = "v${libflux_version}";
hash = "sha256-XHT/+JMu5q1cPjZT2x/OKEPgxFJcnjrQKqn8w9/Mb3s=";
};
patches = [