nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchurl,
5 backoff,
6 domain-local-await,
7 mtime,
8 multicore-magic,
9 yojson,
10}:
11
12buildDunePackage rec {
13 pname = "multicore-bench";
14 version = "0.1.7";
15
16 src = fetchurl {
17 url = "https://github.com/ocaml-multicore/multicore-bench/releases/download/${version}/multicore-bench-${version}.tbz";
18 hash = "sha256-vrp9yiuTwhijhYjeDKPFRGyh/5LeydKWJSyMLZRRXIM=";
19 };
20
21 propagatedBuildInputs = [
22 backoff
23 domain-local-await
24 mtime
25 multicore-magic
26 yojson
27 ];
28
29 meta = {
30 description = "Framework for writing multicore benchmark executables to run on current-bench";
31 homepage = "https://github.com/ocaml-multicore/multicore-bench";
32 license = lib.licenses.isc;
33 maintainers = [ lib.maintainers.vbgl ];
34 };
35}