Files
hearth/package/printobstacle.nix
T

8 lines
141 B
Nix

{ pkgs, ... }:
let
name = "printobstacle";
in
pkgs.writeShellScriptBin "${name}" ''
printf "%s%s%s\n" "''${RED}" "$*" "''${RESET}"
''