about summary refs log tree commit diff
path: root/pkgs/applications/editors/ed/generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/ed/generic.nix')
-rw-r--r--pkgs/applications/editors/ed/generic.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/editors/ed/generic.nix b/pkgs/applications/editors/ed/generic.nix
index 70ec6badf25ec..70ffdb4c4af93 100644
--- a/pkgs/applications/editors/ed/generic.nix
+++ b/pkgs/applications/editors/ed/generic.nix
@@ -13,12 +13,14 @@
 , stdenv
 , fetchurl
 , lzip
+, runtimeShellPackage
 }:
 
 stdenv.mkDerivation {
   inherit pname version src patches;
 
   nativeBuildInputs = [ lzip ];
+  buildInputs = [ runtimeShellPackage ];
 
   configureFlags = [
     "CC=${stdenv.cc.targetPrefix}cc"