biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / shells / zsh / zsh-abbr / default.nix
blob5294d7831a494ebc7189b1872508c8818e20fd32
2   stdenv,
3   lib,
4   fetchFromGitHub,
5 }:
6 stdenv.mkDerivation rec {
7   pname = "zsh-abbr";
8   version = "5.8.3";
10   src = fetchFromGitHub {
11     owner = "olets";
12     repo = "zsh-abbr";
13     rev = "v${version}";
14     hash = "sha256-Kl98S1S4Ds9TF3H1YOjwds38da++/5rpgO/oAfKwRrc=";
15   };
17   strictDeps = true;
19   installPhase = ''
20     install -D zsh-abbr.zsh $out/share/zsh/${pname}/abbr.plugin.zsh
21     # Needed so that `man` can find the manpage, since it looks via PATH
22     mkdir -p $out/bin
23     mv man $out/share/man
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/olets/zsh-abbr";
28     description = "Zsh manager for auto-expanding abbreviations, inspired by fish shell";
29     license = with licenses; [cc-by-nc-nd-40 hl3];
30     maintainers = with maintainers; [icy-thought];
31     platforms = platforms.all;
32   };