mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f5ac1c66f0
https://github.com/ajeetdsouza/zoxide/compare/v0.4.3...v0.5.0 Tests are disabled on darwin because they fail and I can't troubleshoot (since I don't have a darwin system). Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, withFzf ? true
|
|
, fzf
|
|
|
|
# checkInputs
|
|
, fish
|
|
, powershell
|
|
, shellcheck
|
|
, shfmt
|
|
, xonsh
|
|
, zsh
|
|
}:
|
|
let
|
|
version = "0.5.0";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "zoxide";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ajeetdsouza";
|
|
repo = "zoxide";
|
|
rev = "v${version}";
|
|
sha256 = "143lh94mw31pm9q7ib63h2k842g3h222mdabhf25hpb19lka2w5y";
|
|
};
|
|
|
|
# tests are broken on darwin
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
# fish needs a writable HOME for whatever reason
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
checkInputs = [
|
|
fish
|
|
powershell
|
|
shellcheck
|
|
shfmt
|
|
xonsh
|
|
zsh
|
|
];
|
|
|
|
postPatch = lib.optionalString withFzf ''
|
|
substituteInPlace src/fzf.rs \
|
|
--replace '"fzf"' '"${fzf}/bin/fzf"'
|
|
'';
|
|
|
|
cargoSha256 = "05mp101yk1zkjj1gwbkldizq6f9f8089gqgvq42c4ngq88pc7v9a";
|
|
|
|
meta = with lib; {
|
|
description = "A fast cd command that learns your habits";
|
|
homepage = "https://github.com/ajeetdsouza/zoxide";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ ysndr cole-h ];
|
|
};
|
|
}
|