summary refs log tree commit diff
path: root/pkgs/applications/editors/nano/default.nix
blob: 5118b798547335bf204752fea618cbf81f169331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, ncurses, gettext}:

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