Loading pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -21,6 +21,8 @@ lib.makeScope newScope (self: with self; { fifc = callPackage ./fifc.nix { }; fish-bd = callPackage ./fish-bd.nix { }; # Fishtape 2.x and 3.x aren't compatible, # but both versions are used in the tests of different other plugins. fishtape = callPackage ./fishtape.nix { }; Loading pkgs/shells/fish/plugins/fish-bd.nix 0 → 100644 +26 −0 Original line number Diff line number Diff line { lib, buildFishPlugin, fetchFromGitHub, gitUpdater, }: buildFishPlugin rec { pname = "fish-bd"; version = "1.3.3"; src = fetchFromGitHub { owner = "0rax"; repo = "fish-bd"; rev = "v${version}"; hash = "sha256-GeWjoakXa0t2TsMC/wpLEmsSVGhHFhBVK3v9eyQdzv0="; }; passthru.updateScript = gitUpdater { rev-prefix = "v"; }; meta = { description = "Fish plugin to quickly go back to a parent directory up in your current working directory tree"; homepage = "https://github.com/0rax/fish-bd"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ anomalocaris ]; }; } Loading
pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -21,6 +21,8 @@ lib.makeScope newScope (self: with self; { fifc = callPackage ./fifc.nix { }; fish-bd = callPackage ./fish-bd.nix { }; # Fishtape 2.x and 3.x aren't compatible, # but both versions are used in the tests of different other plugins. fishtape = callPackage ./fishtape.nix { }; Loading
pkgs/shells/fish/plugins/fish-bd.nix 0 → 100644 +26 −0 Original line number Diff line number Diff line { lib, buildFishPlugin, fetchFromGitHub, gitUpdater, }: buildFishPlugin rec { pname = "fish-bd"; version = "1.3.3"; src = fetchFromGitHub { owner = "0rax"; repo = "fish-bd"; rev = "v${version}"; hash = "sha256-GeWjoakXa0t2TsMC/wpLEmsSVGhHFhBVK3v9eyQdzv0="; }; passthru.updateScript = gitUpdater { rev-prefix = "v"; }; meta = { description = "Fish plugin to quickly go back to a parent directory up in your current working directory tree"; homepage = "https://github.com/0rax/fish-bd"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ anomalocaris ]; }; }