aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Cohen2020-11-26 11:11:15 +0100
committerCyril Cohen2020-11-26 11:11:15 +0100
commit6bff567e84b01c1b3502985ec936b9e74ea252b4 (patch)
treecbec61ca3904187e27d62e9dd40978fa59ee2b33
parent3af5647929406b754ea44aaac34678abc646451d (diff)
adding back lua and sed to default.nix
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 9c4336c..195a47e 100644
--- a/default.nix
+++ b/default.nix
@@ -137,7 +137,7 @@ if pkgs.lib.trivial.inNixShell then pkg.overrideAttrs (old: {
buildInputs = if do-nothing then []
else (old.buildInputs ++
(if pkgs.lib.trivial.inNixShell then pkgs.lib.optional withEmacs pkgs.emacs
- else []));
+ else [])) ++ [ pkgs.lua pkgs.sedutil ];
propagatedBuildInputs = if do-nothing then [] else old.propagatedBuildInputs;