Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-07 22:56:25 +00:00
parent 5566bc3677
commit 4676201fce
7 changed files with 21 additions and 14 deletions

View File

@@ -1,13 +1,4 @@
{ pkgs, ... }:
{
keyValue = "${
pkgs.writeShellApplication {
name = "merge-key-value";
runtimeInputs = with pkgs; [
coreutils
gawk
];
text = builtins.readFile ./key-value.sh;
}
}/bin/merge-key-value";
keyValue = import ./keyValue { inherit pkgs; };
}

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
"${
pkgs.writeShellApplication {
name = "merge-key-value";
runtimeInputs = with pkgs; [
coreutils
gawk
];
text = builtins.readFile ./key-value.sh;
}
}/bin/merge-key-value"