2019-10-01 14:38:22 +01:00
|
|
|
{ stdenv, fetchFromGitLab, git, buildGoPackage }:
|
2018-10-23 11:23:29 +01:00
|
|
|
|
2019-10-01 14:38:22 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gitlab-workhorse";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2019-10-23 21:47:24 +01:00
|
|
|
version = "8.14.0";
|
2018-09-21 08:31:30 +01:00
|
|
|
|
2018-11-23 13:47:18 +00:00
|
|
|
src = fetchFromGitLab {
|
2016-01-30 13:47:04 +00:00
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-workhorse";
|
2016-08-03 17:49:18 +01:00
|
|
|
rev = "v${version}";
|
2019-10-23 21:47:24 +01:00
|
|
|
sha256 = "1cqx75h4x4chjvp72kzbln8qkm5p7p2w7x8bdd99g38kf21wxxaq";
|
2016-01-30 13:47:04 +00:00
|
|
|
};
|
|
|
|
|
2019-10-01 14:38:22 +01:00
|
|
|
goPackagePath = "gitlab.com/gitlab-org/gitlab-workhorse";
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
buildInputs = [ git ];
|
2019-10-23 21:47:24 +01:00
|
|
|
buildFlagsArray = "-ldflags=-X main.Version=${version}";
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2019-10-01 14:38:22 +01:00
|
|
|
# gitlab-workhorse depends on an older version of labkit which
|
|
|
|
# contains old, vendored versions of some packages; gitlab-workhorse
|
|
|
|
# also explicitly depends on newer versions of these libraries,
|
|
|
|
# but buildGoPackage exposes the vendored versions instead,
|
|
|
|
# leading to compilation errors. Since the vendored libraries
|
|
|
|
# aren't used here anyway, we'll just remove them.
|
|
|
|
postConfigure = ''
|
|
|
|
rm -r "$NIX_BUILD_TOP/go/src/gitlab.com/gitlab-org/labkit/vendor"
|
|
|
|
'';
|
|
|
|
|
2016-09-27 14:49:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.gitlab.com/;
|
|
|
|
platforms = platforms.unix;
|
2019-10-08 15:37:01 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin talyz ];
|
2016-09-27 14:49:21 +01:00
|
|
|
license = licenses.mit;
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2016-01-30 13:47:04 +00:00
|
|
|
}
|