about summary refs log tree commit diff
path: root/nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix')
-rw-r--r--nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix b/nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix
new file mode 100644
index 000000000000..846436d2d196
--- /dev/null
+++ b/nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix
@@ -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 ];
+  };
+}