bf-tree 0.5.5

Bf-Tree is a modern read-write-optimized concurrent larger-than-memory range index in Rust from Microsoft Research.
Documentation
{ stdenv, lib, libuuid, pkg-config, sources }:

stdenv.mkDerivation rec {
  version = sources.nvme-cli.rev;
  name = "nvme-cli-${version}";
  src = sources.nvme-cli;

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libuuid ];

  makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];

  # To omit the hostnqn and hostid files that are impure and should be unique
  # for each target host:
  installTargets = [ "install-spec" ];

  meta = with lib; {
    description = sources.nvme-cli.description;
    homepage = sources.nvme-cli.homepage;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
}