Merge pull request #284649 from NickCao/nvmetcfg

nvmetcfg: init at 0.1.0
This commit is contained in:
Nick Cao 2024-01-30 07:30:19 -05:00 committed by GitHub
commit 51ca16b452
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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