criterion: remove "v" prefix from version of test derivation

The version string must start with a digit per nixpkgs versioning guideline.
This commit is contained in:
Heitor Augusto
2025-02-10 18:49:42 -03:00
parent 6e37a9a488
commit c4ea434f1b
@@ -5,7 +5,7 @@
}:
stdenv.mkDerivation rec {
name = "version-tester";
version = "v${criterion.version}";
inherit (criterion) version;
src = ./test_dummy.c;
dontUnpack = true;