Skip to content

Commit

Permalink
influxdb: remove "v" prefix in version in libflux
Browse files Browse the repository at this point in the history
The version string must start with a digit per nixpkgs versioning guidelines.
  • Loading branch information
HeitorAugustoLN committed Feb 10, 2025
1 parent 9a9523f commit df198fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/nosql/influxdb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit df198fe

Please sign in to comment.