nixpkgs/pkgs/os-specific/linux/nvme-cli/default.nix

28 lines
713 B
Nix
Raw Normal View History

2016-09-20 12:19:36 -07:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
2019-08-17 04:45:21 -07:00
pname = "nvme-cli";
version = "1.9";
2016-09-20 12:19:36 -07:00
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
2019-08-17 04:45:21 -07:00
sha256 = "08x0x7nq8v7gr8a4lrrhclkz6n8fxlhhizxl2nz56w1xmfghcnfv";
2016-09-20 12:19:36 -07:00
};
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
2019-08-17 04:45:21 -07:00
# To omit the hostnqn and hostid files that are impure and should be unique
# for each target host:
2019-11-04 04:33:53 -08:00
installTargets = [ "install-spec" ];
2019-08-17 04:45:21 -07:00
2016-09-20 12:19:36 -07:00
meta = with lib; {
inherit (src.meta) homepage;
description = "NVM-Express user space tooling for Linux";
2017-10-21 12:35:07 -07:00
license = licenses.gpl2Plus;
2016-09-20 12:19:36 -07:00
platforms = platforms.linux;
2017-10-21 12:35:07 -07:00
maintainers = with maintainers; [ primeos tavyc ];
2016-09-20 12:19:36 -07:00
};
}