2020-07-04 09:13:09 +02:00
|
|
|
{ lib
|
2020-10-30 20:13:25 +01:00
|
|
|
, stdenv
|
2020-03-30 03:51:05 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2020-07-04 09:13:09 +02:00
|
|
|
, withFzf ? true
|
|
|
|
, fzf
|
2021-05-02 03:33:00 +02:00
|
|
|
, installShellFiles
|
2021-04-09 08:45:17 +02:00
|
|
|
, libiconv
|
2020-03-30 03:51:05 +02:00
|
|
|
}:
|
2021-02-12 02:48:09 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-03-10 22:48:38 +01:00
|
|
|
pname = "zoxide";
|
2021-11-01 23:59:04 +01:00
|
|
|
version = "0.7.9";
|
2020-03-10 22:48:38 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ajeetdsouza";
|
|
|
|
repo = "zoxide";
|
|
|
|
rev = "v${version}";
|
2021-11-01 23:59:04 +01:00
|
|
|
sha256 = "sha256-afjEqHUoLYS+IOMnWocT5dVkjWdWGavJn7q9Fqjliss=";
|
2020-03-10 22:48:38 +01:00
|
|
|
};
|
|
|
|
|
2021-05-02 03:33:00 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-04-09 08:45:17 +02:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
|
2020-07-04 09:13:09 +02:00
|
|
|
postPatch = lib.optionalString withFzf ''
|
2020-05-25 11:20:00 +02:00
|
|
|
substituteInPlace src/fzf.rs \
|
|
|
|
--replace '"fzf"' '"${fzf}/bin/fzf"'
|
|
|
|
'';
|
2020-03-10 22:48:38 +01:00
|
|
|
|
2021-11-01 23:59:04 +01:00
|
|
|
cargoSha256 = "sha256-CgbjSP8QotCxQ8n8SLVuLpkg8hLuRYZwsl/9HsrkCt8=";
|
2020-03-10 22:48:38 +01:00
|
|
|
|
2021-05-02 03:33:00 +02:00
|
|
|
postInstall = ''
|
|
|
|
installManPage man/*
|
2021-06-14 17:43:15 +02:00
|
|
|
installShellCompletion --cmd zoxide \
|
|
|
|
--bash contrib/completions/zoxide.bash \
|
|
|
|
--fish contrib/completions/zoxide.fish \
|
|
|
|
--zsh contrib/completions/_zoxide
|
2021-05-02 03:33:00 +02:00
|
|
|
'';
|
|
|
|
|
2020-07-04 09:13:09 +02:00
|
|
|
meta = with lib; {
|
2020-03-10 22:48:38 +01:00
|
|
|
description = "A fast cd command that learns your habits";
|
|
|
|
homepage = "https://github.com/ajeetdsouza/zoxide";
|
2021-05-02 03:33:00 +02:00
|
|
|
changelog = "https://github.com/ajeetdsouza/zoxide/raw/v${version}/CHANGELOG.md";
|
2020-03-10 22:48:38 +01:00
|
|
|
license = with licenses; [ mit ];
|
2021-02-12 02:48:09 +01:00
|
|
|
maintainers = with maintainers; [ ysndr cole-h SuperSandro2000 ];
|
2020-03-10 22:48:38 +01:00
|
|
|
};
|
|
|
|
}
|