nvme-cli: 1.8.1 -> 1.9

This commit is contained in:
Michael Weiss 2019-08-17 13:45:21 +02:00
parent 1d1eee57a4
commit b09407a573
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -1,18 +1,22 @@
{ lib, stdenv, fetchFromGitHub }: { lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "nvme-cli-${version}"; pname = "nvme-cli";
version = "1.8.1"; version = "1.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "linux-nvme"; owner = "linux-nvme";
repo = "nvme-cli"; repo = "nvme-cli";
rev = "v${version}"; rev = "v${version}";
sha256 = "0agnxfcwgnnimmxrdpg4lmiqc5ai9b4amk8krriw01lflxi3xzn0"; sha256 = "08x0x7nq8v7gr8a4lrrhclkz6n8fxlhhizxl2nz56w1xmfghcnfv";
}; };
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
# To omit the hostnqn and hostid files that are impure and should be unique
# for each target host:
installTargets = "install-spec";
meta = with lib; { meta = with lib; {
inherit (src.meta) homepage; inherit (src.meta) homepage;
description = "NVM-Express user space tooling for Linux"; description = "NVM-Express user space tooling for Linux";