2025-06-24 02:28:49 +00:00

43 lines
1.1 KiB
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
installShellFiles,
}:
stdenvNoCC.mkDerivation rec {
pname = "wd";
version = "0.10.1";
src = fetchFromGitHub {
owner = "mfaerevaag";
repo = "wd";
rev = "v${version}";
hash = "sha256-dlpkSKdWilNnz3dpRfN+EPx/vjIZpmZ/DMzeO9sh4z0=";
};
nativeBuildInputs = [ installShellFiles ];
installPhase = ''
install -Dm755 wd.plugin.zsh $out/share/wd/wd.plugin.zsh
install -Dm755 wd.sh $out/share/wd/wd.sh
installManPage wd.1
installShellCompletion --zsh _wd.sh
'';
meta = {
description = "Jump to custom directories in zsh";
longDescription = ''
`wd` (warp directory) lets you jump to custom directories in zsh, without
using `cd`. Why? Because `cd` seems inefficient when the folder is
frequently visited or has a long path.
'';
homepage = "https://github.com/mfaerevaag/wd";
changelog = "https://github.com/mfaerevaag/wd/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.zimeg ];
mainProgram = "wd";
platforms = lib.platforms.unix;
};
}