zoxide: 0.3.1 -> 0.4.0

https://github.com/ajeetdsouza/zoxide/compare/v0.3.1...v0.4.0

Most notable changes, IMHO:

- `zoxide init` now uses PWD hooks by default
- `fish` no longer `cd`s to the user's home when no match is found
- Interactive mode in `zoxide` no longer throws an error if `fzf` exits gracefully
This commit is contained in:
Cole Helbling 2020-05-03 07:53:41 -07:00
parent 7610f0417b
commit fb7e28ebbe
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -6,20 +6,20 @@
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.3.1";
version = "0.4.0";
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "1sad18d0pxfdy9gvjmixzgdskg1l7djvzp0aipx7pz0lyi6gs23z";
sha256 = "1qkvmjrkcivfzbm6swl5lgvpqz9av9jxcn9i8ms3wz4vfsibmlxv";
};
buildInputs = [
fzf
];
cargoSha256 = "1sx3s1jnfxylbjr3x6v6j8a6zkl7hfyj4alzlyrsw36b1b64pwqm";
cargoSha256 = "1w921f7b6kzc1mjzff1bcs3mg4cp9h48698w2zlv5jzjs7nwgb8n";
meta = with lib; {
description = "A fast cd command that learns your habits";