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

This commit is contained in:
sinanmohd
2025-02-19 15:41:42 +05:30
parent d89d3fd47d
commit 39db67e292
7 changed files with 74 additions and 13 deletions

View File

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