mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
ocamlPackages.multicore-bench: init at 0.1.4
This commit is contained in:
parent
5b297f7871
commit
36820f5d58
22
pkgs/development/ocaml-modules/multicore-bench/default.nix
Normal file
22
pkgs/development/ocaml-modules/multicore-bench/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildDunePackage, fetchurl
|
||||
, domain-local-await, mtime, multicore-magic, yojson
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "multicore-bench";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ocaml-multicore/multicore-bench/releases/download/${version}/multicore-bench-${version}.tbz";
|
||||
hash = "sha256-iCx5QvhYo/e53cW23Sza2as4aez4HeESVvLPF1DW85A=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ domain-local-await mtime multicore-magic yojson ];
|
||||
|
||||
meta = {
|
||||
description = "Framework for writing multicore benchmark executables to run on current-bench";
|
||||
homepage = "https://github.com/ocaml-multicore/multicore-bench";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
@ -1201,6 +1201,8 @@ let
|
||||
|
||||
mtime = callPackage ../development/ocaml-modules/mtime { };
|
||||
|
||||
multicore-bench = callPackage ../development/ocaml-modules/multicore-bench { };
|
||||
|
||||
multicore-magic = callPackage ../development/ocaml-modules/multicore-magic { };
|
||||
|
||||
multipart-form-data = callPackage ../development/ocaml-modules/multipart-form-data { };
|
||||
|
Loading…
Reference in New Issue
Block a user