fetchFromGitlab: domain can be specified

This commit is contained in:
worldofpeace 2018-05-30 12:58:51 -04:00
parent 273c882f53
commit 097937330a

View file

@ -286,13 +286,13 @@ with pkgs;
# gitlab example
fetchFromGitLab = {
owner, repo, rev, name ? "source",
owner, repo, rev, domain ? "gitlab.com", name ? "source",
... # For hash agility
}@args: fetchzip ({
inherit name;
url = "https://gitlab.com/api/v4/projects/${owner}%2F${repo}/repository/archive.tar.gz?sha=${rev}";
meta.homepage = "https://gitlab.com/${owner}/${repo}/";
} // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; };
url = "https://${domain}/api/v4/projects/${owner}%2F${repo}/repository/archive.tar.gz?sha=${rev}";
meta.homepage = "https://${domain}/${owner}/${repo}/";
} // removeAttrs args [ "domain" "owner" "repo" "rev" ]) // { inherit rev; };
# gitweb example, snapshot support is optional in gitweb
fetchFromRepoOrCz = {