chore(nix/package/dcoker/aio): init env-processor

This commit is contained in:
sinanmohd
2025-02-19 14:08:26 +05:30
parent c4212fd62f
commit d89d3fd47d
4 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
writeShellApplication,
coreutils,
}:
writeShellApplication {
name = "env-processor";
runtimeInputs = [ coreutils ];
text = builtins.readFile ./env_processor.sh;
}