freebsd.devctl: init

Co-Authored-By: Audrey Dutcher <audrey@rhelmot.io>
This commit is contained in:
Artemis Tosini
2026-03-06 13:16:03 -08:00
parent 17d8804ebe
commit 78b96fe36d
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,13 @@
{
mkDerivation,
libdevctl,
}:
mkDerivation {
path = "usr.sbin/devctl";
outputs = [
"out"
"debug"
];
buildInputs = [ libdevctl ];
meta.mainProgram = "devctl";
}
@@ -0,0 +1,7 @@
{
mkDerivation,
}:
mkDerivation {
path = "lib/libdevctl";
alwaysKeepStatic = true;
}