nixpkgs/pkgs/by-name/ni/nix-zsh-completions/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
790 B
Nix
Raw Normal View History

{ 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 {
owner = "nix-community";
2015-11-24 18:13:48 +00:00
repo = "nix-zsh-completions";
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 = ''
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
2015-11-24 18:13:48 +00:00
cp _* $out/share/zsh/site-functions
cp *.zsh $out/share/zsh/plugins/nix
2015-11-24 18:13:48 +00:00
'';
meta = with lib; {
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";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ olejorgenb hedning ma27 sebtm ];
2015-11-24 18:13:48 +00:00
};
}