···11-{ stdenv, fetchFromGitHub, ncurses, texinfo, tetex, perl, ghostscript }:
11+{ stdenv, fetchFromGitHub, ncurses, texinfo, texlive, perl, ghostscript }:
223344stdenv.mkDerivation rec {
···1010 rev = version;
1111 sha256 = "05inzhlqlf4ka22q78q389pr34bsb4lgp1i5qh550vjkb2cvbdfp";
1212 };
1313- buildInputs = [ ncurses tetex texinfo perl ghostscript ];
1313+ buildInputs = [ ncurses texlive.combined.scheme-medium texinfo perl ghostscript ];
1414 dontBuild = true;
1515 installPhase = ''
1616 substituteInPlace src/makefile --replace "CC=c99" "cc=gcc"
···2020 cd src && make && cd ..
2121 make PREFIX=$out install
2222 '';
2323-2323+2424 meta = {
2525 description = "The nice editor";
2626 homepage = https://github.com/vigna/ne;
2727 longDescription = ''
2828- ne is a free (GPL'd) text editor based on the POSIX standard that runs (we hope) on almost any
2929-UN*X machine. ne is easy to use for the beginner, but powerful and fully configurable for the wizard,
3030-and most sparing in its resource usage. See the manual for some highlights of ne's features.
2828+ ne is a free (GPL'd) text editor based on the POSIX standard that runs
2929+ (we hope) on almost any UN*X machine. ne is easy to use for the beginner,
3030+ but powerful and fully configurable for the wizard, and most sparing in its
3131+ resource usage. See the manual for some highlights of ne's features.
3132 '';
3233 license = stdenv.lib.licenses.gpl3;
3334 platforms = stdenv.lib.platforms.unix;