diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-01 00:02:13 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-01 00:02:13 +0200 |
| commit | 1203d4566c0aa0401704c7f9027c175e8bcba95b (patch) | |
| tree | 6d13176fc64e960f54451b3d8767a981a7363755 /modules/by-name/lf | |
| parent | modules/boot: Add a `root=` argument to the tails live ISO boot entry (diff) | |
| download | nixos-config-1203d4566c0aa0401704c7f9027c175e8bcba95b.zip | |
modules/lf/command: Add required `sed` dependency
That was unsatisfied since I added the `lf_cmd` argument escaping.
Diffstat (limited to 'modules/by-name/lf')
| -rw-r--r-- | modules/by-name/lf/lf/commands/default.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix index e8230556..ae02c45b 100644 --- a/modules/by-name/lf/lf/commands/default.nix +++ b/modules/by-name/lf/lf/commands/default.nix @@ -16,7 +16,14 @@ pkgs.writeShellApplication { inherit name; text = builtins.readFile ./base.sh + builtins.readFile ./scripts/${name}.sh; - runtimeInputs = [pkgs.lf pkgs.mktemp pkgs.coreutils] ++ dependencies; + runtimeInputs = + [ + pkgs.lf + pkgs.mktemp + pkgs.coreutils + pkgs.gnused + ] + ++ dependencies; inheritPath = keepPath; } + "/bin/${name}"; |
