nvmetcfg: init at 0.1.0

This commit is contained in:
Nick Cao 2024-01-28 20:03:11 -05:00
parent 97b17f3236
commit 53f5705347
No known key found for this signature in database

View 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;
};
}