mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.multicore-magic: init at 2.3.0
This commit is contained in:
parent
5ba5b4cafb
commit
a4ad12ca52
24
pkgs/development/ocaml-modules/multicore-magic/default.nix
Normal file
24
pkgs/development/ocaml-modules/multicore-magic/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildDunePackage, fetchurl
|
||||
, alcotest, domain_shims
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "multicore-magic";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ocaml-multicore/multicore-magic/releases/download/${version}/multicore-magic-${version}.tbz";
|
||||
hash = "sha256-r50UqLOd2DoTz0CEXHpJMHX0fty+mGiAKTdtykgnzu4=";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkInputs = [ alcotest domain_shims ];
|
||||
|
||||
meta = {
|
||||
description = "Low-level multicore utilities for OCaml";
|
||||
license = lib.licenses.isc;
|
||||
homepage = "https://github.com/ocaml-multicore/multicore-magic";
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
@ -1199,6 +1199,8 @@ let
|
||||
|
||||
mtime = callPackage ../development/ocaml-modules/mtime { };
|
||||
|
||||
multicore-magic = callPackage ../development/ocaml-modules/multicore-magic { };
|
||||
|
||||
multipart-form-data = callPackage ../development/ocaml-modules/multipart-form-data { };
|
||||
|
||||
mustache = callPackage ../development/ocaml-modules/mustache { };
|
||||
|
Loading…
Reference in New Issue
Block a user