pass gettext

svn path=/nixpkgs/trunk/; revision=6320
This commit is contained in:
Armijn Hemel 2006-08-30 00:14:13 +00:00
parent 26f6d80db4
commit c73bb44a6b
2 changed files with 4 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, ncurses}:
{stdenv, fetchurl, ncurses, gettext}:
stdenv.mkDerivation {
name = "nano-1.2.5";
@ -6,8 +6,6 @@ stdenv.mkDerivation {
url = http://www.nano-editor.org/dist/v1.2/nano-1.2.5.tar.gz;
md5 = "f2b3efbf1cf356d736740d531b6b22c4";
};
buildInputs = [ncurses];
buildInputs = [ncurses gettext];
configureFlags = "--enable-tiny";
}

View File

@ -2553,11 +2553,11 @@ rec {
};
nano = (import ../applications/editors/nano) {
inherit fetchurl stdenv ncurses;
inherit fetchurl stdenv ncurses gettext;
};
nanoDiet = (import ../applications/editors/nano) {
inherit fetchurl;
inherit fetchurl gettext;
ncurses = ncursesDiet;
stdenv = overrideGCC stdenv dietgcc;
};