1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4 pname = "zsh-completions";
7 src = fetchFromGitHub {
11 sha256 = "sha256-GFHlZjIHUWwyeVoCpszgn4AmLPSSE8UVNfRmisnhkpg=";
16 install -D --target-directory=$out/share/zsh/site-functions src/*
18 # tmuxp install it so avoid collision
19 rm $out/share/zsh/site-functions/_tmuxp
23 description = "Additional completion definitions for zsh";
24 homepage = "https://github.com/zsh-users/zsh-completions";
25 license = with lib.licenses; [
32 platforms = lib.platforms.unix;
33 maintainers = [ lib.maintainers.olejorgenb ];