Unverified Commit 564f2196 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #294627 from iynaix/init-transient-fish

fishPlugins.transient-fish: init at 0-unstable-2024-03-10
parents a30e5644 6c1d07ab
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -56,6 +56,8 @@ lib.makeScope newScope (self: with self; {

  tide = callPackage ./tide.nix { };

  transient-fish = callPackage ./transient-fish.nix { };

  wakatime-fish = callPackage ./wakatime-fish.nix { };

  z = callPackage ./z.nix { };
+22 −0
Original line number Diff line number Diff line
{ lib
, buildFishPlugin
, fetchFromGitHub
}:
buildFishPlugin {
  pname = "transient-fish";
  version = "0-unstable-2024-03-10";

  src = fetchFromGitHub {
    owner = "zzhaolei";
    repo = "transient.fish";
    rev = "be0093f1799462a93953e69896496dee4d063fd6";
    hash = "sha256-rEkCimnkxcydKRI2y4DxEM7FD7F2/cGTZJN2Edq/Acc=";
  };

  meta = with lib; {
    description = "Fish plugin to enable a transient prompt";
    homepage = "https://github.com/zzhaolei/transient.fish";
    license = licenses.mit;
    maintainers = with maintainers; [ iynaix ];
  };
}