Skip to content

Commit

Permalink
criterion: remove "v" prefix from version of test derivation
Browse files Browse the repository at this point in the history
The version string must start with a digit per nixpkgs versioning guideline.
  • Loading branch information
HeitorAugustoLN committed Feb 10, 2025
1 parent e5d3e3b commit 668f992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/by-name/cr/criterion/tests/001-version.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
}:
stdenv.mkDerivation rec {
name = "version-tester";
version = "v${criterion.version}";
inherit (criterion) version;
src = ./test_dummy.c;

dontUnpack = true;
Expand Down

0 comments on commit 668f992

Please sign in to comment.