Files
nixpkgs/pkgs/by-name/zs/zsh-wd/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02: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;
};
}