mirror of
https://github.com/NixOS/nix
synced 2025-06-24 22:11:15 +02:00
16 lines
297 B
Nix
16 lines
297 B
Nix
let
|
|
inherit (import ../config.nix) mkDerivation;
|
|
in
|
|
mkDerivation {
|
|
name = "unusual-logging";
|
|
buildCommand = ''
|
|
{
|
|
echo "@nix 1"
|
|
echo "@nix {}"
|
|
echo '@nix {"action": null}'
|
|
echo '@nix {"action": 123}'
|
|
echo '@nix ]['
|
|
} >&$NIX_LOG_FD
|
|
touch $out
|
|
'';
|
|
}
|