2016-06-27 00:39:18 +02:00
|
|
|
{ stdenv, fetchFromGitHub}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "zsh-completions";
|
2018-12-19 20:18:54 +01:00
|
|
|
version = "0.30.0";
|
2016-06-27 00:39:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zsh-users";
|
|
|
|
repo = "zsh-completions";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2018-12-19 20:18:54 +01:00
|
|
|
sha256 = "1yf4rz99acdsiy0y1v3bm65xvs2m0sl92ysz0rnnrlbd5amn283l";
|
2016-06-27 00:39:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase= ''
|
|
|
|
install -D --target-directory=$out/share/zsh/site-functions src/*
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Additional completion definitions for zsh";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/zsh-users/zsh-completions;
|
2016-06-27 00:39:18 +02:00
|
|
|
license = stdenv.lib.licenses.free;
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.olejorgenb ];
|
|
|
|
};
|
|
|
|
}
|