nvme-cli: init at 0.9
This commit is contained in:
parent
ec97f23aff
commit
b26dff4ea5
2 changed files with 25 additions and 0 deletions
23
pkgs/os-specific/linux/nvme-cli/default.nix
Normal file
23
pkgs/os-specific/linux/nvme-cli/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nvme-cli-${version}";
|
||||
version = "0.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linux-nvme";
|
||||
repo = "nvme-cli";
|
||||
rev = "v${version}";
|
||||
sha256 = "16n0gg1zx4fgadcq94kx6bgysqw60jvybjwynk7mj3fzdbvzrqyh";
|
||||
};
|
||||
|
||||
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
||||
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "NVM-Express user space tooling for Linux";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ tavyc ];
|
||||
};
|
||||
}
|
|
@ -11602,6 +11602,8 @@ in
|
|||
|
||||
numad = callPackage ../os-specific/linux/numad { };
|
||||
|
||||
nvme-cli = callPackage ../os-specific/linux/nvme-cli { };
|
||||
|
||||
open-vm-tools = callPackage ../applications/virtualization/open-vm-tools {
|
||||
inherit (gnome2) gtk gtkmm;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue