forked from mirrors/nixpkgs
gitlab: Don't build any gitlab component outside linux
For some reason hydra seems to have issues downloading the gitlab-workhorse source on macOS. Since we don't build the rails app for macOS, the other components seem a bit useless there, so we limit them to linux for now.
This commit is contained in:
parent
b69a51a08b
commit
a30facc96e
|
@ -55,7 +55,7 @@ in buildGoPackage rec {
|
|||
meta = with stdenv.lib; {
|
||||
homepage = https://gitlab.com/gitlab-org/gitaly;
|
||||
description = "A Git RPC service for handling all the git calls made by GitLab";
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ roblabla globin fpletz ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@ buildGoPackage rec {
|
|||
meta = with stdenv.lib; {
|
||||
description = "SSH access and repository management app for GitLab";
|
||||
homepage = http://www.gitlab.com/;
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ fpletz globin talyz ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
|
|
@ -29,7 +29,7 @@ buildGoPackage rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.gitlab.com/;
|
||||
platforms = platforms.unix;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ fpletz globin talyz ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue