Skip to content

Commit 8612bc6

Browse files
authored
ocamlPackages.benchmark: 1.6 -> 1.7 (#414669)
1 parent 99c220e commit 8612bc6

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

pkgs/development/ocaml-modules/benchmark/default.nix

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,25 @@
66

77
buildDunePackage rec {
88
pname = "benchmark";
9-
version = "1.6";
9+
version = "1.7";
10+
11+
minimalOCamlVersion = "4.03";
1012

1113
src = fetchurl {
12-
url = "https://github.com/Chris00/ocaml-benchmark/releases/download/${version}/benchmark-${version}.tbz";
13-
hash = "sha256-Mw19cYya/MEy52PVRYE/B6TnqCWw5tEz9CUrUfKAnPA=";
14+
url = "https://github.com/Chris00/ocaml-benchmark/releases/download/v${version}/benchmark-${version}.tbz";
15+
hash = "sha256-Aij7vJzamNWQfjLeGgENlIp6Il8+Wc9hsahr4eDGs68=";
1416
};
1517

1618
meta = {
1719
homepage = "https://github.com/Chris00/ocaml-benchmark";
1820
description = "Benchmark running times of code";
19-
license = lib.licenses.lgpl21;
21+
longDescription = ''
22+
This module provides a set of tools to measure the running times of
23+
your functions and to easily compare the results. A statistical test
24+
is used to determine whether the results truly differ.
25+
'';
26+
changelog = "https://raw.githubusercontent.com/Chris00/ocaml-benchmark/refs/tags/v${version}/CHANGES.md";
27+
license = lib.licenses.lgpl3;
28+
maintainers = with lib.maintainers; [ momeemt ];
2029
};
2130
}

0 commit comments

Comments
 (0)