Files

65 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
meson,
ninja,
libnvme,
json_c,
zlib,
python3Packages,
udevCheckHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nvme-cli";
version = "2.16";
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${finalAttrs.version}";
hash = "sha256-gW95iJF9RnPC1mcoLjS3r+4tZhX+TP4BSOMU0uB256A=";
};
mesonFlags = [
"-Dversion-tag=${finalAttrs.version}"
];
nativeBuildInputs = [
meson
ninja
pkg-config
python3Packages.nose2
udevCheckHook
];
buildInputs = [
libnvme
json_c
zlib
];
doInstallCheck = true;
meta = {
inherit (finalAttrs.src.meta) homepage; # https://nvmexpress.org/
description = "NVM-Express user space tooling for Linux";
longDescription = ''
NVM-Express is a fast, scalable host controller interface designed to
address the needs for not only PCI Express based solid state drives, but
also NVMe-oF(over fabrics).
This nvme program is a user space utility to provide standards compliant
tooling for NVM-Express drives. It was made specifically for Linux as it
relies on the IOCTLs defined by the mainline kernel driver.
'';
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
mic92
vifino
];
mainProgram = "nvme";
};
})