2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2015-11-24 18:13:48 +00:00
|
|
|
|
2021-07-14 15:10:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "nix-zsh-completions";
|
2023-01-30 22:02:59 +00:00
|
|
|
version = "unstable-2023-01-30";
|
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-01-30 22:02:59 +00:00
|
|
|
rev = "6a1bfc024481bdba568f2ced65e02f3a359a7692";
|
|
|
|
hash = "sha256-aXetjkl5nPuYHHyuX59ywXF+4Xg+PUCV6Y2u+g18gEk=";
|
2015-11-24 18:13:48 +00:00
|
|
|
};
|
|
|
|
|
2022-05-06 18:39:28 +00:00
|
|
|
strictDeps = true;
|
2015-11-24 18:13:48 +00:00
|
|
|
installPhase = ''
|
2018-07-10 13:17:32 +00: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 13:17:32 +00: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 13:17:32 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2023-05-05 12:34:05 +00:00
|
|
|
maintainers = with maintainers; [ olejorgenb hedning ma27 ];
|
2015-11-24 18:13:48 +00:00
|
|
|
};
|
|
|
|
}
|