nixpkgs/pkgs/development/ocaml-modules/saturn/default.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

22 lines
478 B
Nix

{ lib, fetchurl, buildDunePackage, ocaml
, saturn_lockfree
, dscheck
, qcheck, qcheck-alcotest, qcheck-stm
}:
buildDunePackage rec {
pname = "saturn";
inherit (saturn_lockfree) src version;
propagatedBuildInputs = [ saturn_lockfree ];
doCheck = lib.versionAtLeast ocaml.version "5.0";
checkInputs = [ dscheck qcheck qcheck-alcotest qcheck-stm ];
meta = saturn_lockfree.meta // {
description = "Parallelism-safe data structures for multicore OCaml";
};
}