Skip to content

Commit f4f03ae

Browse files
authored
fishPlugins.bang-bang: init at 0-unstable-2023-07-23 (NixOS#357041)
2 parents b81b4ed + 75d6e7b commit f4f03ae

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
lib,
3+
buildFishPlugin,
4+
fetchFromGitHub,
5+
}:
6+
buildFishPlugin {
7+
pname = "bang-bang";
8+
version = "0-unstable-2023-07-23";
9+
10+
src = fetchFromGitHub {
11+
owner = "oh-my-fish";
12+
repo = "plugin-bang-bang";
13+
rev = "ec991b80ba7d4dda7a962167b036efc5c2d79419";
14+
hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0=";
15+
};
16+
17+
meta = {
18+
description = "Bash style history substitution for Oh My Fish";
19+
homepage = "https://github.com/oh-my-fish/plugin-bang-bang";
20+
license = lib.licenses.mit;
21+
maintainers = with lib.maintainers; [ theobori ];
22+
};
23+
}

pkgs/shells/fish/plugins/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ lib.makeScope newScope (self: with self; {
55

66
autopair = callPackage ./autopair.nix { };
77

8+
bang-bang = callPackage ./bang-bang.nix { };
9+
810
bobthefish = callPackage ./bobthefish.nix { };
911

1012
bobthefisher = callPackage ./bobthefisher.nix { };

0 commit comments

Comments
 (0)