zoxide: 0.2.1 -> 0.2.2

This commit is contained in:
Cole Helbling 2020-03-19 13:21:46 -07:00
parent c69153580b
commit 9ac94c36d4
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C

View file

@ -2,26 +2,26 @@
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.2.1";
version = "0.2.2";
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "0ldqhzkpbqjc1in0d0f7b06b8gim4sbh292qcbwhf5abyrhbm3m8";
sha256 = "0s6aax6bln9jmmv7kw630mj0l6qpvdx8mdk3a5d9akr9d23zxmr5";
};
buildInputs = [
fzf
];
cargoSha256 = "1grrqbdy37p3r857gz956h0ls922ma5fz6f8fb3vx7wc98rap621";
cargoSha256 = "1gzpkf7phl5xd666l7pc25917x4qq0kkxk4i9dkz3lvxz3v8ylrz";
meta = with stdenv.lib; {
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ysndr ];
maintainers = with maintainers; [ ysndr cole-h ];
platforms = platforms.all;
};
}