1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5}:
6buildFishPlugin {
7 pname = "transient-fish";
8 version = "0-unstable-2024-03-10";
9
10 src = fetchFromGitHub {
11 owner = "zzhaolei";
12 repo = "transient.fish";
13 rev = "be0093f1799462a93953e69896496dee4d063fd6";
14 hash = "sha256-rEkCimnkxcydKRI2y4DxEM7FD7F2/cGTZJN2Edq/Acc=";
15 };
16
17 meta = with lib; {
18 description = "Fish plugin to enable a transient prompt";
19 homepage = "https://github.com/zzhaolei/transient.fish";
20 license = licenses.mit;
21 maintainers = with maintainers; [ iynaix ];
22 };
23}