14 lines
256 B
Nix
14 lines
256 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
keyValue = lib.meta.getExe (
|
|
pkgs.writeShellApplication {
|
|
name = "merge-key-value";
|
|
runtimeInputs = with pkgs; [
|
|
gnugrep
|
|
coreutils
|
|
];
|
|
text = builtins.readFile ./key-value.sh;
|
|
}
|
|
);
|
|
}
|