about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-12-01 14:56:53 +1100
committerGitHub <noreply@github.com>2023-12-01 14:56:53 +1100
commit77651cc03509c9a6fc29329b5db77272f2e2cec2 (patch)
tree71808d3c0e68bc673af2f53203a40e0d9803fd23 /pkgs/applications
parentac01ff7146a43d5fe1624bc41c6e452f4d202e10 (diff)
parent994fb2abe349987dc3d36fce6bb5ab082debe7a7 (diff)
downloadnixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar.gz
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar.bz2
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar.lz
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar.xz
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.tar.zst
nixlib-77651cc03509c9a6fc29329b5db77272f2e2cec2.zip
Merge pull request #270785 from emilytrau/clex-4.7
clex: 4.6.patch10 -> 4.7
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/file-managers/clex/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/file-managers/clex/default.nix b/pkgs/applications/file-managers/clex/default.nix
index a2ac0df9801d..507da73bbc53 100644
--- a/pkgs/applications/file-managers/clex/default.nix
+++ b/pkgs/applications/file-managers/clex/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "clex";
-  version = "4.6.patch10";
+  version = "4.7";
 
   src = fetchurl {
-    sha256 = "03niihqk57px7rm2c84qira5jm5vw8lj5s58dximk0w5gsis4fhw";
-    url = "${meta.homepage}/download/${pname}-${version}.tar.gz";
+    url = "https://github.com/xitop/clex/releases/download/v${version}/clex-${version}.tar.gz";
+    hash = "sha256-3Y3ayJEy9pHLTUSeXYeekTVdopwKLZ8vVcVarLIFnpM=";
   };
 
   buildInputs = [ ncurses ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
       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";
+    homepage = "https://github.com/xitop/clex";
     license = licenses.gpl2Plus;
     platforms = with platforms; linux ++ darwin;
   };