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 12:41:18 +00:00
|
|
|
pname = "clex";
|
2023-11-29 02:19:21 +00:00
|
|
|
version = "4.7";
|
2015-01-25 19:56:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-29 02:19:21 +00:00
|
|
|
url = "https://github.com/xitop/clex/releases/download/v${version}/clex-${version}.tar.gz";
|
|
|
|
hash = "sha256-3Y3ayJEy9pHLTUSeXYeekTVdopwKLZ8vVcVarLIFnpM=";
|
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.
|
|
|
|
'';
|
2023-11-29 02:19:21 +00:00
|
|
|
homepage = "https://github.com/xitop/clex";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-06-09 21:19:41 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-01-25 19:56:28 +00:00
|
|
|
};
|
|
|
|
}
|