streamlink: 7.1.1 -> 7.1.2 (#373269)
[NixPkgs.git] / pkgs / by-name / ag / agkozak-zsh-prompt / package.nix
blob30ce835feda983c7d69277101c96f595b9e84a15
2   stdenvNoCC,
3   lib,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "agkozak-zsh-prompt";
9   version = "3.11.4";
11   src = fetchFromGitHub {
12     owner = "agkozak";
13     repo = "agkozak-zsh-prompt";
14     rev = "v${version}";
15     sha256 = "sha256-FC9LIZaS6fV20qq6cJC/xQvfsM3DHXatVleH7yBgoNg=";
16   };
18   strictDeps = true;
19   dontConfigure = true;
20   dontBuild = true;
22   installPhase = ''
23     plugindir="$out/share/zsh/site-functions"
25     mkdir -p "$plugindir"
26     cp -r -- lib/*.zsh agkozak-zsh-prompt.plugin.zsh prompt_agkozak-zsh-prompt_setup "$plugindir"/
27   '';
29   meta = with lib; {
30     description = "Fast, asynchronous Zsh prompt";
31     homepage = "https://github.com/agkozak/agkozak-zsh-prompt";
32     license = licenses.mit;
33     platforms = platforms.all;
34     maintainers = with maintainers; [ ambroisie ];
35   };