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

24 lines
579 B
Nix
Raw Normal View History

2016-09-20 21:19:36 +02:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "nvme-cli-${version}";
2017-10-21 21:35:07 +02:00
version = "1.4";
2016-09-20 21:19:36 +02:00
src = fetchFromGitHub {
owner = "linux-nvme";
repo = "nvme-cli";
rev = "v${version}";
2017-10-21 21:35:07 +02:00
sha256 = "00jrr1mya9wkapiapph3nch3kpqas6vlc8kl8dbrjjfb5hg35gqf";
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
};
}