Merge pull request #83735 from cole-h/zoxide

zoxide: 0.2.2 -> 0.3.0
This commit is contained in:
Benjamin Hipple 2020-03-29 23:05:04 -04:00 committed by GitHub
commit 25467c4490
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,27 @@
{ stdenv, fetchFromGitHub, rustPlatform, fzf }:
{ lib
, fetchFromGitHub
, rustPlatform
, fzf
}:
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.2.2";
version = "0.3.0";
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "0s6aax6bln9jmmv7kw630mj0l6qpvdx8mdk3a5d9akr9d23zxmr5";
sha256 = "0w4by34chm2baqldxx72bhjz8ggsllpir1df07gxi5fjkmil8jy9";
};
buildInputs = [
fzf
];
cargoSha256 = "1gzpkf7phl5xd666l7pc25917x4qq0kkxk4i9dkz3lvxz3v8ylrz";
cargoSha256 = "19fziapiv5w9wxslw47rf3lgc2lv7dyl3n8py6bsddq41fzay30w";
meta = with stdenv.lib; {
meta = with lib; {
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];