Merge pull request #294627 from iynaix/init-transient-fish
fishPlugins.transient-fish: init at 0-unstable-2024-03-10
This commit is contained in:
commit
564f219686
2 changed files with 24 additions and 0 deletions
|
@ -56,6 +56,8 @@ lib.makeScope newScope (self: with self; {
|
||||||
|
|
||||||
tide = callPackage ./tide.nix { };
|
tide = callPackage ./tide.nix { };
|
||||||
|
|
||||||
|
transient-fish = callPackage ./transient-fish.nix { };
|
||||||
|
|
||||||
wakatime-fish = callPackage ./wakatime-fish.nix { };
|
wakatime-fish = callPackage ./wakatime-fish.nix { };
|
||||||
|
|
||||||
z = callPackage ./z.nix { };
|
z = callPackage ./z.nix { };
|
||||||
|
|
22
pkgs/shells/fish/plugins/transient-fish.nix
Normal file
22
pkgs/shells/fish/plugins/transient-fish.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue