git-worktree-switcher: 0.2.4 -> 0.2.6 (#447031)

This commit is contained in:
Austin Horstman
2025-10-04 14:07:50 +00:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
@@ -12,17 +12,18 @@ let
shell:
if (shell == "fish") then
''
${lib.getExe pkgs.git-worktree-switcher} init ${shell} | source
${lib.getExe cfg.package} init ${shell} | source
''
else
''
eval "$(${lib.getExe pkgs.git-worktree-switcher} init ${shell})"
eval "$(${lib.getExe cfg.package} init ${shell})"
'';
in
{
options = {
programs.git-worktree-switcher = {
enable = lib.mkEnableOption "git-worktree-switcher, switch between git worktrees with speed.";
package = lib.mkPackageOption pkgs "git-worktree-switcher" { };
};
};
@@ -10,13 +10,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "git-worktree-switcher";
version = "0.2.4";
version = "0.2.6";
src = fetchFromGitHub {
owner = "mateusauler";
repo = "git-worktree-switcher";
tag = "${finalAttrs.version}-fork";
hash = "sha256-N+bDsLEUM6FWhyliUav2n5hwMa5EEuVPoIK+Cja0DxA=";
hash = "sha256-vPnAXiizCU5nXce+aE2x2G5ei+7A+eBTUpxcGleSSa8=";
};
buildInputs = [