2021-02-18 23:41:44 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config
|
|
|
|
, libuuid
|
|
|
|
}:
|
2016-09-20 19:19:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-17 11:45:21 +00:00
|
|
|
pname = "nvme-cli";
|
2020-10-22 11:32:30 +00:00
|
|
|
version = "1.13";
|
2016-09-20 19:19:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linux-nvme";
|
|
|
|
repo = "nvme-cli";
|
|
|
|
rev = "v${version}";
|
2020-10-22 11:32:30 +00:00
|
|
|
sha256 = "1d538kp841bjh8h8d9q7inqz56rdcwb3m78zfx8607ddykv7wcqb";
|
2016-09-20 19:19:36 +00:00
|
|
|
};
|
|
|
|
|
2020-04-24 13:02:11 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-02-18 23:41:44 +00:00
|
|
|
buildInputs = [ libuuid ];
|
2020-01-10 16:01:59 +00:00
|
|
|
|
2016-09-20 19:19:36 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
|
|
|
2019-08-17 11:45:21 +00:00
|
|
|
# To omit the hostnqn and hostid files that are impure and should be unique
|
|
|
|
# for each target host:
|
2019-11-04 12:33:53 +00:00
|
|
|
installTargets = [ "install-spec" ];
|
2019-08-17 11:45:21 +00:00
|
|
|
|
2016-09-20 19:19:36 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 13:02:11 +00:00
|
|
|
inherit (src.meta) homepage; # https://nvmexpress.org/
|
2016-09-20 19:19:36 +00:00
|
|
|
description = "NVM-Express user space tooling for Linux";
|
2020-04-24 13:02:11 +00:00
|
|
|
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.
|
|
|
|
'';
|
2017-10-21 19:35:07 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-09-20 19:19:36 +00:00
|
|
|
platforms = platforms.linux;
|
2017-10-21 19:35:07 +00:00
|
|
|
maintainers = with maintainers; [ primeos tavyc ];
|
2016-09-20 19:19:36 +00:00
|
|
|
};
|
|
|
|
}
|