10 lines
177 B
Nix
10 lines
177 B
Nix
{ writeShellApplication, python3 }:
|
|
writeShellApplication {
|
|
name = "nix_templater";
|
|
runtimeInputs = [
|
|
python3
|
|
];
|
|
text = ''
|
|
python ${./replace.py} "$@"
|
|
'';
|
|
}
|