629a8ec9b2
I switched to using mlog for logging, as opposed to writing directly to Stderr. This gives us control over log levels, as well as coordination so that we don't have multiple go-routines writing to stderr at the same time.
15 lines
234 B
Nix
15 lines
234 B
Nix
{
|
|
|
|
buildGoModule,
|
|
|
|
}: buildGoModule {
|
|
|
|
pname = "cryptic-net-entrypoint";
|
|
version = "unstable";
|
|
src = ./src;
|
|
vendorSha256 = "sha256-TTTXwztv4xwF1uXcYoSka6HwgHwU1AnClF4fguXVtK4=";
|
|
subPackages = [
|
|
"cmd/entrypoint"
|
|
];
|
|
}
|