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

24 lines
581 B
Nix
Raw Normal View History

2016-09-20 21:19:36 +02:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "nvme-cli-${version}";
2019-04-10 12:26:24 +02:00
version = "1.8.1";
2016-09-20 21:19:36 +02:00
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
2019-04-10 12:26:24 +02:00
sha256 = "0agnxfcwgnnimmxrdpg4lmiqc5ai9b4amk8krriw01lflxi3xzn0";
2016-09-20 21:19:36 +02:00
};
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
meta = with lib; {
inherit (src.meta) homepage;
description = "NVM-Express user space tooling for Linux";
2017-10-21 21:35:07 +02:00
license = licenses.gpl2Plus;
2016-09-20 21:19:36 +02:00
platforms = platforms.linux;
2017-10-21 21:35:07 +02:00
maintainers = with maintainers; [ primeos tavyc ];
2016-09-20 21:19:36 +02:00
};
}