nixpkgs/pkgs/by-name/nv/nvmetcfg/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
725 B
Nix
Raw Permalink Normal View History

2024-01-29 02:03:11 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
2024-02-01 19:34:05 +01:00
, nixosTests
2024-01-29 02:03:11 +01:00
}:
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=";
2024-02-01 19:34:05 +01:00
passthru.tests = {
inherit (nixosTests) nvmetcfg;
};
2024-01-29 02:03:11 +01:00
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;
};
}