aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix b/nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix
new file mode 100644
index 00000000000..8c9c65c24e4
--- /dev/null
+++ b/nixpkgs/pkgs/shells/zsh/zsh-autosuggestions/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, zsh }:
+
+# To make use of this derivation, use the `programs.zsh.enableAutoSuggestions` option
+
+stdenv.mkDerivation rec {
+ pname = "zsh-autosuggestions";
+ version = "0.6.4";
+
+ src = fetchFromGitHub {
+ owner = "zsh-users";
+ repo = "zsh-autosuggestions";
+ rev = "v${version}";
+ sha256 = "0h52p2waggzfshvy1wvhj4hf06fmzd44bv6j18k3l9rcx6aixzn6";
+ };
+
+ buildInputs = [ zsh ];
+
+ installPhase = ''
+ install -D zsh-autosuggestions.zsh \
+ $out/share/zsh-autosuggestions/zsh-autosuggestions.zsh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Fish shell autosuggestions for Zsh";
+ homepage = https://github.com/zsh-users/zsh-autosuggestions;
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.loskutov ];
+ };
+}