File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
pkgs/development/ocaml-modules/benchmark Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 66
77buildDunePackage 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}
You can’t perform that action at this time.
0 commit comments