Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
ethtool
util-linux # for lscpu
pciutils # for lspci
dmidecode # for system/BIOS/memory information
];

hardware_report_unwrapped = pkgs.rustPlatform.buildRustPackage {
Expand Down Expand Up @@ -108,7 +109,7 @@ Maintainer: Kenny Sheridan <kenny@sfcompute.com>
Description: Hardware information collection tool
A tool for generating detailed hardware information reports from Linux servers,
outputting the data in TOML format for infrastructure standardization.
Depends: numactl, ipmitool, ethtool, util-linux, pciutils
Depends: numactl, ipmitool, ethtool, util-linux, pciutils, dmidecode
Priority: optional
Section: utils
EOF
Expand Down Expand Up @@ -255,7 +256,7 @@ EOF
echo "Run 'cargo run' to run the project"
echo ""
echo "Runtime dependencies are available in PATH:"
echo "- numactl, ipmitool, ethtool, lscpu, lspci"
echo "- numactl, ipmitool, ethtool, lscpu, lspci, dmidecode"
'';
};

Expand Down
Loading