nixpkgs/pkgs/shells/zsh/gradle-completion/default.nix
R. RyanTM 3b51bceee6 gradle-completion: 1.3.1 -> 1.4.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gradle-completion/versions
2019-03-02 03:02:50 -08:00

36 lines
900 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "gradle-completion-${version}";
version = "1.4.1";
src = fetchFromGitHub {
owner = "gradle";
repo = "gradle-completion";
rev = "v${version}";
sha256 = "15b0692i3h8h7b95465b2aw9qf5qjmjag5n62347l8yl7zbhv3l2";
};
# we just move two files into $out,
# this shouldn't bother Hydra.
preferLocalBuild = true;
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out
install -Dm0644 ./_gradle $out/share/zsh/site-functions/_gradle
install -Dm0644 ./gradle-completion.bash $out/share/bash-completion/completions/gradle
runHook postInstall
'';
meta = with stdenv.lib; {
description = "Gradle tab completion for bash and zsh";
homepage = https://github.com/gradle/gradle-completion;
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}