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

49 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, withFzf ? true
, fzf
2021-05-02 03:33:00 +02:00
, installShellFiles
, libiconv
}:
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 ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
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
'';
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 ];
maintainers = with maintainers; [ ysndr cole-h SuperSandro2000 ];
2020-03-10 22:48:38 +01:00
};
}