forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / development / ocaml-modules / multicore-bench / default.nix
blob5e1d2275e5b601ee8f318eca0731e18968cedba5
1 { lib, buildDunePackage, fetchurl
2 , domain-local-await, mtime, multicore-magic, yojson
3 }:
5 buildDunePackage rec {
6   pname = "multicore-bench";
7   version = "0.1.4";
9   src = fetchurl {
10     url = "https://github.com/ocaml-multicore/multicore-bench/releases/download/${version}/multicore-bench-${version}.tbz";
11     hash = "sha256-iCx5QvhYo/e53cW23Sza2as4aez4HeESVvLPF1DW85A=";
12   };
14   propagatedBuildInputs = [ domain-local-await mtime multicore-magic yojson ];
16   meta = {
17     description = "Framework for writing multicore benchmark executables to run on current-bench";
18     homepage = "https://github.com/ocaml-multicore/multicore-bench";
19     license = lib.licenses.isc;
20     maintainers = [ lib.maintainers.vbgl ];
21   };