nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix

32 lines
770 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-11-24 18:13:48 +00:00
let
version = "0.4.4";
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "nix-zsh-completions";
inherit version;
2015-11-24 18:13:48 +00:00
src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "1n9whlys95k4wc57cnz3n07p7zpkv796qkmn68a50ygkx6h3afqf";
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/spwhitt/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; [ spwhitt olejorgenb hedning ma27 ];
2015-11-24 18:13:48 +00:00
};
}