about summary refs log tree commit diff
path: root/pkgs/tools/misc/zoxide
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-12-13 14:13:18 +0900
committerCole Helbling <cole.e.helbling@outlook.com>2023-12-13 14:36:57 -0800
commit8831abf9d419e33645bcfda7ec7f0c5ae063d785 (patch)
tree7c128b8b3a1111f0a3f032e5b402e9d2b2722539 /pkgs/tools/misc/zoxide
parentb8d5b5ea350bd2d48b05f7cfaec55c89159d0612 (diff)
zoxide: 0.9.2 -> unstable-2023-11-20
update to master to avoid usage with nushell
breakage

(cherry picked from commit 7d1cb7dbaaa297650f3330eaf5a57a95db88ac81)
Diffstat (limited to 'pkgs/tools/misc/zoxide')
-rw-r--r--pkgs/tools/misc/zoxide/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/zoxide/default.nix b/pkgs/tools/misc/zoxide/default.nix
index 2489a21a19253..44863361a088e 100644
--- a/pkgs/tools/misc/zoxide/default.nix
+++ b/pkgs/tools/misc/zoxide/default.nix
@@ -10,13 +10,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "zoxide";
-  version = "0.9.2";
+  version = "unstable-2023-11-20";
 
   src = fetchFromGitHub {
     owner = "ajeetdsouza";
     repo = "zoxide";
-    rev = "v${version}";
-    sha256 = "sha256-h/T3McaKKASwQt+0SBBxFXMnYyt+0Xl+5i8IulUAdnU=";
+    rev = "3022cf3686b85288e6fbecb2bd23ad113fd83f3b";
+    sha256 = "sha256-ut+/F7cQ5Xamb7T45a78i0mjqnNG9/73jPNaDLxzAx8=";
   };
 
   nativeBuildInputs = [ installShellFiles ];
@@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
       --replace '"fzf"' '"${fzf}/bin/fzf"'
   '';
 
-  cargoSha256 = "sha256-uu7zi6prnfbi4EQ0+0QcTEo/t5CIwNEQgJkIgxSk5u4=";
+  cargoSha256 = "sha256-JRWlHwPFqNC/IIKQqRQszx4HHW1XsmROA67KmnxkmWQ=";
 
   postInstall = ''
     installManPage man/man*/*
@@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "A fast cd command that learns your habits";
     homepage = "https://github.com/ajeetdsouza/zoxide";
-    changelog = "https://github.com/ajeetdsouza/zoxide/raw/v${version}/CHANGELOG.md";
+    # changelog = "https://github.com/ajeetdsouza/zoxide/raw/v${version}/CHANGELOG.md";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ ysndr cole-h SuperSandro2000 ];
     mainProgram = "zoxide";