2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2015-11-24 18:13:48 +00:00
|
|
|
|
2021-07-14 16:10:11 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "nix-zsh-completions";
|
2024-03-17 01:16:25 +00:00
|
|
|
version = "0.5.1";
|
2015-11-24 18:13:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-01-30 22:02:59 +00:00
|
|
|
owner = "nix-community";
|
2015-11-24 18:13:48 +00:00
|
|
|
repo = "nix-zsh-completions";
|
2023-08-07 21:52:11 +01:00
|
|
|
rev = "refs/tags/${version}";
|
2024-03-17 01:16:25 +00:00
|
|
|
hash = "sha256-bgbMc4HqigqgdkvUe/CWbUclwxpl17ESLzCIP8Sz+F8=";
|
2015-11-24 18:13:48 +00:00
|
|
|
};
|
|
|
|
|
2022-05-06 19:39:28 +01:00
|
|
|
strictDeps = true;
|
2015-11-24 18:13:48 +00:00
|
|
|
installPhase = ''
|
2018-07-10 14:17:32 +01:00
|
|
|
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
|
2015-11-24 18:13:48 +00:00
|
|
|
cp _* $out/share/zsh/site-functions
|
2018-07-10 14:17:32 +01:00
|
|
|
cp *.zsh $out/share/zsh/plugins/nix
|
2015-11-24 18:13:48 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2023-01-30 22:02:59 +00:00
|
|
|
homepage = "https://github.com/nix-community/nix-zsh-completions";
|
2015-11-24 18:13:48 +00:00
|
|
|
description = "ZSH completions for Nix, NixOS, and NixOps";
|
2018-07-10 14:17:32 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2024-03-17 10:11:15 +00:00
|
|
|
maintainers = with maintainers; [ olejorgenb hedning ma27 sebtm ];
|
2015-11-24 18:13:48 +00:00
|
|
|
};
|
|
|
|
}
|