2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, ncurses }:
|
2015-01-25 19:56:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "clex";
|
2020-10-22 09:23:45 +01:00
|
|
|
version = "4.6.patch10";
|
2015-01-25 19:56:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-22 09:23:45 +01:00
|
|
|
sha256 = "03niihqk57px7rm2c84qira5jm5vw8lj5s58dximk0w5gsis4fhw";
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
|
2015-01-25 19:56:28 +00:00
|
|
|
};
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-25 19:56:28 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.clex.sk";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2020-06-09 22:19:41 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-01-25 19:56:28 +00:00
|
|
|
};
|
|
|
|
}
|