nixpkgs/pkgs/development/ocaml-modules/saturn/lockfree.nix
Vincent Laporte 53ef6d94f3
ocamlPackages.saturn: 0.3.0 (lockfree) → 0.4.0
ocamlPackages.domainslib: 0.5.0 → 0.5.1
2023-08-25 08:27:35 +02:00

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 ];
};
}