about summary refs log tree commit diff
path: root/pkgs/shells/zsh/gradle-completion
Commit message (Collapse)AuthorAge
* gradle-completion: 1.3.1 -> 1.4.1R. RyanTM2019-03-02
| | | | | | | 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
* gradle-completion: init at 1.3.1 (#42929)Maximilian Bosch2018-07-05
This package adds completion scripts for `gradle` on the `bash` and `zsh` shells. The completions can be enabled like this: ``` { pkgs, ... }: { environment.systemPackages = [ pkgs.gradle pkgs.gradle-completion ]; programs.zsh.enable = true; } ``` The package stores the scripts into the expected directories in `$out/share` to ensure that the shells can easily find their scripts. Closes #42799