bf-tree 0.4.7

Bf-Tree is a modern read-write-optimized concurrent larger-than-memory range index in Rust from Microsoft Research.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ crossSystem ? null
, img_tag ? ""
, tag ? ""
, img_org ? ""
}:

let
  sources = import ./nix/sources.nix;
  pkgs = import sources.nixpkgs {
    overlays = [
      (_: _: { inherit sources; })
      (import ./nix/overlay.nix { inherit img_tag tag img_org; })
    ];
    inherit crossSystem;
  };
in
pkgs