mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
53ef6d94f3
ocamlPackages.domainslib: 0.5.0 → 0.5.1
25 lines
625 B
Nix
25 lines
625 B
Nix
{ lib, fetchurl, buildDunePackage
|
|
, domain_shims
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "saturn_lockfree";
|
|
version = "0.4.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-multicore/saturn/releases/download/${version}/saturn-${version}.tbz";
|
|
hash = "sha256-fHvslaJwVbQaqDVA/MHGqHybetYbxRGlMrhgXqM3iPs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ domain_shims ];
|
|
|
|
meta = {
|
|
description = "Lock-free data structures for multicore OCaml";
|
|
homepage = "https://github.com/ocaml-multicore/lockfree";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|