Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchurl, buildDunePackage }:
2
3buildDunePackage rec {
4 pname = "benchmark";
5 version = "1.6";
6
7 src = fetchurl {
8 url = "https://github.com/Chris00/ocaml-benchmark/releases/download/${version}/benchmark-${version}.tbz";
9 hash = "sha256-Mw19cYya/MEy52PVRYE/B6TnqCWw5tEz9CUrUfKAnPA=";
10 };
11
12 meta = {
13 homepage = "https://github.com/Chris00/ocaml-benchmark";
14 description = "Benchmark running times of code";
15 license = lib.licenses.lgpl21;
16 };
17}