nvme-cli: 1.10.1 -> 1.11.1
This commit is contained in:
parent
3dbabc3c9b
commit
34276b84c5
@ -1,17 +1,17 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, pkgconfig }:
|
{ lib, stdenv, fetchFromGitHub, pkg-config }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "nvme-cli";
|
pname = "nvme-cli";
|
||||||
version = "1.10.1";
|
version = "1.11.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "linux-nvme";
|
owner = "linux-nvme";
|
||||||
repo = "nvme-cli";
|
repo = "nvme-cli";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "12wp2wxmsw2v8m9bhvwvdbhdgx1md8iilhbl19sfzz2araiwi2x8";
|
sha256 = "06cxs41biqx230grvpk7zid3apcaajjywrccag50krb6h2wqafdl";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
||||||
|
|
||||||
@ -20,8 +20,16 @@ stdenv.mkDerivation rec {
|
|||||||
installTargets = [ "install-spec" ];
|
installTargets = [ "install-spec" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
inherit (src.meta) homepage;
|
inherit (src.meta) homepage; # https://nvmexpress.org/
|
||||||
description = "NVM-Express user space tooling for Linux";
|
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 = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ primeos tavyc ];
|
maintainers = with maintainers; [ primeos tavyc ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user