about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 17:09:08 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 17:09:08 +0200
commitcdfa812d7a173bd7e1f1df78b9ed1f2c82eb4b91 (patch)
treecb9bcaf046cf0ffb1ab73caf0cf19d88b5ea0500
parentfix(modules/lf/commands): Add needed dependencies of the helpers.sh (diff)
downloadnixos-config-cdfa812d7a173bd7e1f1df78b9ed1f2c82eb4b91.zip
fix(modules/lf/commands): Also include a coreutils implementation prime
Diffstat (limited to '')
-rw-r--r--modules/by-name/lf/lf/commands/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix
index 6c21be12..90b333c6 100644
--- a/modules/by-name/lf/lf/commands/default.nix
+++ b/modules/by-name/lf/lf/commands/default.nix
@@ -7,7 +7,7 @@
     pkgs.writeShellApplication {
       inherit name;
       text = builtins.readFile ./base.sh + builtins.readFile ./scripts/${name}.sh;
-      runtimeInputs = [pkgs.lf pkgs.mktemp] ++ dependencies;
+      runtimeInputs = [pkgs.lf pkgs.mktemp pkgs.coreutils] ++ dependencies;
       inheritPath = keepPath;
     }
     + "/bin/${name}";