1{ lib, stdenv, fetchurl, ncurses }:
2
3stdenv.mkDerivation rec {
4 pname = "clex";
5 version = "4.6.patch10";
6
7 src = fetchurl {
8 sha256 = "03niihqk57px7rm2c84qira5jm5vw8lj5s58dximk0w5gsis4fhw";
9 url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
10 };
11
12 buildInputs = [ ncurses ];
13
14 enableParallelBuilding = true;
15
16 meta = with 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 = with platforms; linux ++ darwin;
28 };
29}