summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/benchmark/default.nix
blob: b0e17054eb532d219686459383380ed003319850 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, fetchurl, buildDunePackage }:

buildDunePackage rec {
  pname = "benchmark";
  version = "1.6";

  src = fetchurl {
    url = "https://github.com/Chris00/ocaml-benchmark/releases/download/${version}/benchmark-${version}.tbz";
    hash = "sha256-Mw19cYya/MEy52PVRYE/B6TnqCWw5tEz9CUrUfKAnPA=";
  };

  meta = {
    homepage = "https://github.com/Chris00/ocaml-benchmark";
    description = "Benchmark running times of code";
    license = lib.licenses.lgpl21;
  };
}