about summary refs log tree commit diff
path: root/pkgs/applications/file-managers/clex/default.nix
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/applications/file-managers/clex/default.nix
parentfb89bc5fca012787bfc9396ea5a5b6d61b3b8e1f (diff)
downloadnixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar.gz
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar.bz2
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar.lz
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar.xz
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.tar.zst
nixlib-f47027dfd0cf76bae4b4c59511f0a2153b6a5e86.zip
clex: move to applications/file-managers
Diffstat (limited to 'pkgs/applications/file-managers/clex/default.nix')
-rw-r--r--pkgs/applications/file-managers/clex/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/file-managers/clex/default.nix b/pkgs/applications/file-managers/clex/default.nix
new file mode 100644
index 000000000000..a2ac0df9801d
--- /dev/null
+++ b/pkgs/applications/file-managers/clex/default.nix
@@ -0,0 +1,29 @@
+{ 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;
+  };
+}