nvme-cli: init at 0.9

This commit is contained in:
Octavian Cerna 2016-09-20 22:19:36 +03:00
parent ec97f23aff
commit b26dff4ea5
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -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;
};