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

30 lines
765 B
Nix
Raw Normal View History

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