2015-01-25 19:56:28 +00:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clex-${version}";
|
2018-06-19 21:31:23 +00:00
|
|
|
version = "4.6.patch9";
|
2015-01-25 19:56:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-19 21:31:23 +00:00
|
|
|
sha256 = "1qj5yp8k90wag5sb3zrm2pn90qqx3zbrgf2gqpqpdqmlgffnv1jc";
|
2015-01-25 19:56:28 +00:00
|
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
|
|
|
};
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-01-25 19:56:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "File manager with full-screen terminal interface";
|
|
|
|
longDescription = ''
|
|
|
|
CLEX (pronounced KLEKS) displays directory contents including the file
|
|
|
|
status details and provides features like command history, filename
|
|
|
|
insertion, or name completion in order to help users to create commands
|
|
|
|
to be executed by the shell. There are no built-in commands, CLEX is an
|
|
|
|
add-on to your favorite shell.
|
|
|
|
'';
|
|
|
|
homepage = http://www.clex.sk;
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2015-01-25 19:56:28 +00:00
|
|
|
};
|
|
|
|
}
|