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