{ lib, pkgs, ... }: { keyValue = lib.meta.getExe ( pkgs.writeShellApplication { name = "merge-key-value"; runtimeInputs = with pkgs; [ coreutils gawk ]; text = builtins.readFile ./key-value.sh; } ); }