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

45 lines
1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, withFzf ? true
, fzf
2021-05-02 01:33:00 +00:00
, installShellFiles
, libiconv
}:
rustPlatform.buildRustPackage rec {
2020-03-10 21:48:38 +00:00
pname = "zoxide";
2021-05-02 01:05:15 +00:00
version = "0.7.0";
2020-03-10 21:48:38 +00:00
src = fetchFromGitHub {
owner = "ajeetdsouza";
repo = "zoxide";
rev = "v${version}";
2021-05-02 01:05:15 +00:00
sha256 = "sha256-yunKyCjJ/vWUcsodweLmxv0+QJQI2i5u5VIzp2U+VyU=";
2020-03-10 21:48:38 +00:00
};
2021-05-02 01:33:00 +00:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
postPatch = lib.optionalString withFzf ''
2020-05-25 09:20:00 +00:00
substituteInPlace src/fzf.rs \
--replace '"fzf"' '"${fzf}/bin/fzf"'
'';
2020-03-10 21:48:38 +00:00
2021-05-02 01:05:15 +00:00
cargoSha256 = "sha256-eoal6z4wX1pNdAJfdamJgOSFCvGWdbVlq1X+vD9lraE=";
2020-03-10 21:48:38 +00:00
2021-05-02 01:33:00 +00:00
postInstall = ''
installManPage man/*
'';
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";
2021-05-02 01:33:00 +00:00
changelog = "https://github.com/ajeetdsouza/zoxide/raw/v${version}/CHANGELOG.md";
2020-03-10 21:48:38 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ ysndr cole-h SuperSandro2000 ];
2020-03-10 21:48:38 +00:00
};
}