mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 22:16:41 +00:00
16 lines
226 B
Nix
16 lines
226 B
Nix
{
|
|
writeShellApplication,
|
|
coreutils,
|
|
s6-portable-utils,
|
|
}:
|
|
writeShellApplication {
|
|
name = "env-processor";
|
|
|
|
runtimeInputs = [
|
|
coreutils
|
|
s6-portable-utils
|
|
];
|
|
|
|
text = builtins.readFile ./env_processor.sh;
|
|
}
|