Unverified Commit f4f03ae1 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

fishPlugins.bang-bang: init at 0-unstable-2023-07-23 (#357041)

parents b81b4edf 75d6e7b2
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{
  lib,
  buildFishPlugin,
  fetchFromGitHub,
}:
buildFishPlugin {
  pname = "bang-bang";
  version = "0-unstable-2023-07-23";

  src = fetchFromGitHub {
    owner = "oh-my-fish";
    repo = "plugin-bang-bang";
    rev = "ec991b80ba7d4dda7a962167b036efc5c2d79419";
    hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0=";
  };

  meta = {
    description = "Bash style history substitution for Oh My Fish";
    homepage = "https://github.com/oh-my-fish/plugin-bang-bang";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ theobori ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ lib.makeScope newScope (self: with self; {

  autopair = callPackage ./autopair.nix { };

  bang-bang = callPackage ./bang-bang.nix { };

  bobthefish = callPackage ./bobthefish.nix { };

  bobthefisher = callPackage ./bobthefisher.nix { };