forked from mirrors/nixpkgs
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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "ksh-${version}";
|
name = "ksh-${version}";
|
||||||
|
@ -13,13 +13,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja which python ];
|
nativeBuildInputs = [ meson ninja which python ];
|
||||||
|
|
||||||
|
buildInputs = [ libiconv ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "KornShell Command And Programming Language";
|
description = "KornShell Command And Programming Language";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
The KornShell language was designed and developed by David G. Korn at
|
The KornShell language was designed and developed by David G. Korn at
|
||||||
AT&T Bell Laboratories. It is an interactive command language that
|
AT&T Bell Laboratories. It is an interactive command language that
|
||||||
provides access to the UNIX system and to many other systems, on the
|
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;
|
homepage = https://github.com/att/ast;
|
||||||
license = licenses.cpl10;
|
license = licenses.cpl10;
|
||||||
|
@ -31,4 +33,3 @@ stdenv.mkDerivation rec {
|
||||||
shellPath = "/bin/ksh";
|
shellPath = "/bin/ksh";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue