statically linked nano. For some reason I had to use the --enable-tiny configure flag, so the full blown normal glibc dynamically linked version is a bit less functional now, but it is only intended to be used in rescue mode anyway, since normal people use vi.
svn path=/nixpkgs/trunk/; revision=6318
This commit is contained in:
parent
b76219e55b
commit
26f6d80db4
@ -7,6 +7,7 @@ stdenv.mkDerivation {
|
||||
md5 = "f2b3efbf1cf356d736740d531b6b22c4";
|
||||
};
|
||||
buildInputs = [ncurses];
|
||||
configureFlags = "--enable-tiny";
|
||||
}
|
||||
|
||||
|
||||
|
@ -2556,6 +2556,12 @@ rec {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
nanoDiet = (import ../applications/editors/nano) {
|
||||
inherit fetchurl;
|
||||
ncurses = ncursesDiet;
|
||||
stdenv = overrideGCC stdenv dietgcc;
|
||||
};
|
||||
|
||||
vim = (import ../applications/editors/vim) {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user