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

fishPlugins.transient-fish: init at 0-unstable-2024-03-10
This commit is contained in:
OTABI Tomoya 2024-03-10 14:48:27 +09:00 committed by GitHub
commit 564f219686
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

View file

@ -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 { };

View 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 ];
};
}