2019-10-01 13:38:22 +00:00
|
|
|
{ stdenv, fetchFromGitLab, git, buildGoPackage }:
|
2018-10-23 10:23:29 +00:00
|
|
|
|
2019-10-01 13:38:22 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gitlab-workhorse";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2020-11-20 20:02:55 +00:00
|
|
|
version = "8.54.0";
|
2018-09-21 07:31:30 +00: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 16:49:18 +00:00
|
|
|
rev = "v${version}";
|
2020-11-20 20:02:55 +00:00
|
|
|
sha256 = "0fz00sl9q4d3vbslh7y9nsnhjshgfg0x7mv7b7a9sc3mxmabp7gz";
|
2016-01-30 13:47:04 +00:00
|
|
|
};
|
|
|
|
|
2019-10-01 13:38:22 +00:00
|
|
|
goPackagePath = "gitlab.com/gitlab-org/gitlab-workhorse";
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
buildInputs = [ git ];
|
2019-10-23 20:47:24 +00:00
|
|
|
buildFlagsArray = "-ldflags=-X main.Version=${version}";
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2016-09-27 13:49:21 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.gitlab.com/";
|
2019-10-09 13:45:12 +00:00
|
|
|
platforms = platforms.linux;
|
2019-10-08 14:37:01 +00:00
|
|
|
maintainers = with maintainers; [ fpletz globin talyz ];
|
2016-09-27 13:49:21 +00:00
|
|
|
license = licenses.mit;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2016-01-30 13:47:04 +00:00
|
|
|
}
|