Merge pull request #18814 from tavyc/nvme-cli

nvme-cli: init at 0.9
This commit is contained in:
Luca Bruno 2016-09-22 21:47:57 +01:00 committed by GitHub
commit cf6815275a
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

@ -11610,6 +11610,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;
};