mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
nvmetcfg: init at 0.1.0
This commit is contained in:
parent
97b17f3236
commit
53f5705347
27
pkgs/by-name/nv/nvmetcfg/package.nix
Normal file
27
pkgs/by-name/nv/nvmetcfg/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "nvmetcfg";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vifino";
|
||||
repo = "nvmetcfg";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-LoQTcHM6czzQ5ZwXcklFXf/7WlRsoJTF61UhQ56aleQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-yZ4UAx95f/cjeObBtzpiYtwDjgOgkKnD64yGe6ouVGw=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "NVMe-oF Target Configuration Utility for Linux";
|
||||
homepage = "https://github.com/vifino/nvmetcfg";
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ nickcao ];
|
||||
mainProgram = "nvmetcfg";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user