freebsd.nvmecontrol: init

Co-Authored-By: Audrey Dutcher <audrey@rhelmot.io>
This commit is contained in:
Artemis Tosini
2026-03-06 13:20:46 -08:00
co-authored by Audrey Dutcher
parent bbfb0d85c6
commit d3b51e5057
@@ -0,0 +1,23 @@
{
mkDerivation,
libnvmf,
libnv,
libsbuf,
}:
mkDerivation {
path = "sbin/nvmecontrol";
extraPaths = [
"sys/dev/nvme"
];
outputs = [
"out"
"debug"
];
buildInputs = [
libnvmf
libnv
libsbuf
];
MK_TESTS = "no";
}