nix-templating/pkgs/nix_templater/default.nix
2025-05-26 17:01:45 +02:00

10 lines
178 B
Nix

{ writeShellApplication, python3 }:
writeShellApplication {
name = "text_templater";
runtimeInputs = [
python3
];
text = ''
python ${./replace.py} "$@"
'';
}