nixpkgs/pkgs/tools/misc/zoxide/default.nix

32 lines
676 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, rustPlatform
, fzf
}:
2020-03-10 21:48:38 +00:00
rustPlatform.buildRustPackage rec {
pname = "zoxide";
version = "0.3.0";
2020-03-10 21:48:38 +00:00
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
sha256 = "0w4by34chm2baqldxx72bhjz8ggsllpir1df07gxi5fjkmil8jy9";
2020-03-10 21:48:38 +00:00
};
buildInputs = [
fzf
];
cargoSha256 = "19fziapiv5w9wxslw47rf3lgc2lv7dyl3n8py6bsddq41fzay30w";
2020-03-10 21:48:38 +00:00
meta = with lib; {
2020-03-10 21:48:38 +00:00
description = "A fast cd command that learns your habits";
homepage = "https://github.com/ajeetdsouza/zoxide";
license = with licenses; [ mit ];
2020-03-19 20:21:46 +00:00
maintainers = with maintainers; [ ysndr cole-h ];
2020-03-10 21:48:38 +00:00
platforms = platforms.all;
};
}