5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
24 lines
625 B
Nix
24 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 ];
|
|
};
|
|
}
|