about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-06-26 21:46:29 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-06-26 23:58:09 -0300
commitf47027dfd0cf76bae4b4c59511f0a2153b6a5e86 (patch)
tree18412c2e5a8ccd5b3ac19d5a979fcd28b2235c78 /pkgs/tools
parentfb89bc5fca012787bfc9396ea5a5b6d61b3b8e1f (diff)
clex: move to applications/file-managers
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/clex/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/tools/misc/clex/default.nix b/pkgs/tools/misc/clex/default.nix
deleted file mode 100644
index a2ac0df9801dd..0000000000000
--- a/pkgs/tools/misc/clex/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchurl, ncurses }:
-
-stdenv.mkDerivation rec {
-  pname = "clex";
-  version = "4.6.patch10";
-
-  src = fetchurl {
-    sha256 = "03niihqk57px7rm2c84qira5jm5vw8lj5s58dximk0w5gsis4fhw";
-    url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
-  };
-
-  buildInputs = [ ncurses ];
-
-  enableParallelBuilding = true;
-
-  meta = with 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";
-    license = licenses.gpl2Plus;
-    platforms = with platforms; linux ++ darwin;
-  };
-}