Merge pull request #82961 from cole-h/zoxide

zoxide: 0.2.1 -> 0.2.2
This commit is contained in:
Mario Rodas 2020-03-19 19:16:06 -05:00 committed by GitHub
commit 8e63168be0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}