gitlab: fix archive urls for gitlab service

Accessing an url like https://gitlab.example.org/group/project/repository/archive.tar.gz?ref=master
requires tar/gzip to be in the path of the gitlab-workhorse service otherwise it fails.
This commit is contained in:
Daiderd Jordan 2017-07-19 21:34:17 +02:00
parent 3cc46829c7
commit a03d6116ce
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

@ -439,6 +439,8 @@ in {
environment.GITLAB_SHELL_CONFIG_PATH = gitlabEnv.GITLAB_SHELL_CONFIG_PATH;
path = with pkgs; [
gitAndTools.git
gnutar
gzip
openssh
gitlab-workhorse
];