freebsd.libcam: init

This commit is contained in:
Audrey Dutcher
2025-03-05 12:41:01 -07:00
parent 6e96684190
commit bdd609bfd3
@@ -0,0 +1,16 @@
{
lib,
libsbuf,
mkDerivation,
}:
mkDerivation {
path = "lib/libcam";
extraPaths = [
"sys/cam"
];
buildInputs = [
libsbuf
];
MK_TESTS = "no";
meta.platforms = lib.platforms.freebsd;
}