ksh: add libiconv dependency
This commit is contained in:
parent
441485af66
commit
1f22e71439
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, meson, ninja, fetchFromGitHub, which, python }:
|
||||
{ stdenv, meson, ninja, fetchFromGitHub, which, python, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ksh-${version}";
|
||||
|
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ meson ninja which python ];
|
||||
|
||||
buildInputs = [ libiconv ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "KornShell Command And Programming Language";
|
||||
longDescription = ''
|
||||
|
@ -31,4 +33,3 @@ stdenv.mkDerivation rec {
|
|||
shellPath = "/bin/ksh";
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue