freebsd.syslogd: init

This commit is contained in:
Audrey Dutcher 2024-06-06 22:51:40 -07:00
parent f3c9e4af03
commit 1185d75848

View File

@ -0,0 +1,23 @@
{ mkDerivation, lib }:
mkDerivation {
path = "usr.sbin/syslogd";
extraPaths = [
"usr.bin/wall"
"sys/sys"
];
# These want to install some config files which we don't want
MK_FTP = "no";
MK_LPR = "no";
MK_PPP = "no";
MK_TESTS = "no";
meta = with lib; {
description = "FreeBSD syslog daemon";
maintainers = with maintainers; [ artemist ];
platforms = platforms.freebsd;
license = licenses.bsd2;
};
}