diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/logger.nix b/pkgs/os-specific/bsd/freebsd/pkgs/logger.nix new file mode 100644 index 000000000000..56e54d942724 --- /dev/null +++ b/pkgs/os-specific/bsd/freebsd/pkgs/logger.nix @@ -0,0 +1,16 @@ +{ + mkDerivation, + libcapsicum, + libcasper, +}: +mkDerivation { + path = "usr.bin/logger"; + outputs = [ + "out" + "debug" + ]; + buildInputs = [ + libcasper + libcapsicum + ]; +}