Changed ruby version to 2.7.x to match upstream. Added a gem config for gitlab-pg_query as it tries to download a source tarball during the build process. Also removed a patch for gitaly that has become obsolete by upstream fix [here](https://gitlab.com/gitlab-org/gitaly/-/commit/de04077c25cc23b001317d2efdf5a9ead0bc86b9).
27 lines
675 B
Nix
27 lines
675 B
Nix
{ stdenv, fetchFromGitLab, git, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gitlab-workhorse";
|
|
|
|
version = "8.54.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-workhorse";
|
|
rev = "v${version}";
|
|
sha256 = "0fz00sl9q4d3vbslh7y9nsnhjshgfg0x7mv7b7a9sc3mxmabp7gz";
|
|
};
|
|
|
|
goPackagePath = "gitlab.com/gitlab-org/gitlab-workhorse";
|
|
goDeps = ./deps.nix;
|
|
buildInputs = [ git ];
|
|
buildFlagsArray = "-ldflags=-X main.Version=${version}";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.gitlab.com/";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ fpletz globin talyz ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|