summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-06-05 23:43:37 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-06-05 23:43:37 -0400
commit1f22e7143975ab0914859a9819887909cf8a4b91 (patch)
tree17f5521c859e6f4ab2e08c07130982647d41794d
parent441485af6684a18c6e3bcba355e8a21024f1b621 (diff)
downloadnixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar.gz
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar.bz2
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar.lz
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar.xz
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.tar.zst
nixpkgs-1f22e7143975ab0914859a9819887909cf8a4b91.zip
ksh: add libiconv dependency
-rw-r--r--pkgs/shells/ksh/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/shells/ksh/default.nix b/pkgs/shells/ksh/default.nix
index 05335a1eb68..d16704b71d5 100644
--- a/pkgs/shells/ksh/default.nix
+++ b/pkgs/shells/ksh/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, meson, ninja, fetchFromGitHub, which, python }:
+{ stdenv, meson, ninja, fetchFromGitHub, which, python, libiconv }:
 
 stdenv.mkDerivation rec {
   name = "ksh-${version}";
@@ -13,13 +13,15 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ meson ninja which python ];
 
+  buildInputs = [ libiconv ];
+
   meta = with stdenv.lib; {
     description = "KornShell Command And Programming Language";
     longDescription = ''
       The KornShell language was designed and developed by David G. Korn at
       AT&T Bell Laboratories. It is an interactive command language that
       provides access to the UNIX system and to many other systems, on the
-      many different computers and workstations on which it is implemented. 
+      many different computers and workstations on which it is implemented.
     '';
     homepage = https://github.com/att/ast;
     license = licenses.cpl10;
@@ -31,4 +33,3 @@ stdenv.mkDerivation rec {
     shellPath = "/bin/ksh";
   };
 }
-