freebsd.devfs: init

This commit is contained in:
Audrey Dutcher 2024-06-06 22:58:14 -07:00
parent afee073eaa
commit 57cc0fb1bf

View File

@ -0,0 +1,10 @@
{ mkDerivation }:
mkDerivation {
path = "sbin/devfs";
# These config files are mostly examples and not super useful
# in nixbsd
postPatch = ''
sed -i 's/^CONFS=.*$//' $BSDSRCDIR/sbin/devfs/Makefile
'';
}