lol
at 18.03-beta 29 lines 908 B view raw
1{ stdenv, fetchurl, ncurses }: 2 3stdenv.mkDerivation rec { 4 name = "clex-${version}"; 5 version = "4.6.patch6"; 6 7 src = fetchurl { 8 sha256 = "0bqa2hc9721d62cfsy5c7a5pzgh9b4px7g4q60xlybkwll19qbbp"; 9 url = "${meta.homepage}/download/${name}.tar.gz"; 10 }; 11 12 buildInputs = [ ncurses ]; 13 14 enableParallelBuilding = true; 15 16 meta = with stdenv.lib; { 17 description = "File manager with full-screen terminal interface"; 18 longDescription = '' 19 CLEX (pronounced KLEKS) displays directory contents including the file 20 status details and provides features like command history, filename 21 insertion, or name completion in order to help users to create commands 22 to be executed by the shell. There are no built-in commands, CLEX is an 23 add-on to your favorite shell. 24 ''; 25 homepage = http://www.clex.sk; 26 license = licenses.gpl2Plus; 27 platforms = platforms.linux; 28 }; 29}