nix-templating/pkgs/nix_templater/default.nix
2025-05-27 12:37:30 +02:00

10 lines
177 B
Nix

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