about summary refs log tree commit diff
path: root/pkgs/shells/fish
diff options
context:
space:
mode:
authorThe Hedgehog <hedgehog@mrhedgehog.xyz>2022-07-29 19:23:59 -0400
committerGitHub <noreply@github.com>2022-07-29 19:23:59 -0400
commit8d76b2329018701e6ee0c1beed7bc8a080af4d07 (patch)
treec2b0b79e3d04e3d444109612d8e15d5e42923059 /pkgs/shells/fish
parenta65d9a7a894ff647dfe5ed342c2048641ca49d3c (diff)
downloadnixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar.gz
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar.bz2
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar.lz
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar.xz
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.tar.zst
nixlib-8d76b2329018701e6ee0c1beed7bc8a080af4d07.zip
fishPlugins.autopair-fish: init at 1.0.4 (#176884)
Diffstat (limited to 'pkgs/shells/fish')
-rw-r--r--pkgs/shells/fish/plugins/autopair-fish.nix20
-rw-r--r--pkgs/shells/fish/plugins/default.nix2
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/shells/fish/plugins/autopair-fish.nix b/pkgs/shells/fish/plugins/autopair-fish.nix
new file mode 100644
index 000000000000..292d492f2046
--- /dev/null
+++ b/pkgs/shells/fish/plugins/autopair-fish.nix
@@ -0,0 +1,20 @@
+{ lib, stdenv, buildFishPlugin, fetchFromGitHub }:
+
+buildFishPlugin rec {
+  pname = "autopair.fish";
+  version = "1.0.4";
+
+  src = fetchFromGitHub {
+    owner = "jorgebucaran";
+    repo = pname;
+    rev = version;
+    sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
+  };
+
+  meta = with lib; {
+    description = "Auto-complete matching pairs in the Fish command line.";
+    homepage = "https://github.com/jorgebucaran/autopair.fish";
+    license = licenses.mit;
+    maintainers = with maintainers; [ thehedgeh0g ];
+  };
+}
diff --git a/pkgs/shells/fish/plugins/default.nix b/pkgs/shells/fish/plugins/default.nix
index 1adf040d64f9..0cc6eb6b89ed 100644
--- a/pkgs/shells/fish/plugins/default.nix
+++ b/pkgs/shells/fish/plugins/default.nix
@@ -2,6 +2,8 @@
 
 lib.makeScope newScope (self: with self; {
 
+  autopair-fish = callPackage ./autopair-fish.nix { };
+
   buildFishPlugin = callPackage ./build-fish-plugin.nix { };
 
   clownfish = callPackage ./clownfish.nix { };