Files
util.nix/package/printobstacle.nix

8 lines
141 B
Nix

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