nixpkgs/pkgs/development/ocaml-modules/saturn/lockfree.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
625 B
Nix
Raw Normal View History

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