2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-07-17 21:14:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "nix-zsh-completions";
|
2023-08-10 07:59:29 +00:00
|
|
|
version = "0.5.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-02-02 18:25:31 +00:00
|
|
|
owner = "nix-community";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "nix-zsh-completions";
|
2023-08-10 07:59:29 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-DKvCpjAeCiUwD5l6PUW7WlEvM0cNZEOk41IiVXoh9D8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
strictDeps = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
|
|
|
|
cp _* $out/share/zsh/site-functions
|
|
|
|
cp *.zsh $out/share/zsh/plugins/nix
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://github.com/nix-community/nix-zsh-completions";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "ZSH completions for Nix, NixOS, and NixOps";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2023-05-24 13:37:59 +00:00
|
|
|
maintainers = with maintainers; [ olejorgenb hedning ma27 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|