tvl-depot/users/Profpatsch/lib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
426 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let
bins = depot.nix.getBins pkgs.coreutils ["printf" "echo"];
debugExec = msg: depot.nix.writeExecline "debug-exec" {} [
"if" [
"fdmove" "-c" "1" "2"
"if" [ bins.printf "%s: " msg ]
"if" [ bins.echo "$@" ]
]
"$@"
];
eprintf = depot.nix.writeExecline "eprintf" {} [
"fdmove" "-c" "1" "2" bins.printf "$@"
];
in {
inherit
debugExec
eprintf
;
}