2020-11-26 12:41:37 +00:00
|
|
|
{ stdenv, fetchFromGitLab, git, buildGoModule }:
|
2018-10-23 11:23:29 +01:00
|
|
|
|
2020-11-26 12:41:37 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gitlab-workhorse";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2020-12-26 21:06:22 +00:00
|
|
|
version = "8.58.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}";
|
2020-12-26 21:06:22 +00:00
|
|
|
sha256 = "1642vxxqnpccjzfls3vz4l62kvksk6irwv1dhjcxv1cppbr9hz80";
|
2016-01-30 13:47:04 +00:00
|
|
|
};
|
|
|
|
|
2020-12-26 21:06:22 +00:00
|
|
|
vendorSha256 = "0vkw12w7vr0g4hf4f0im79y7l36d3ah01n1vl7siy94si47g8ir5";
|
2019-10-01 14:38:22 +01:00
|
|
|
buildInputs = [ git ];
|
2019-10-23 21:47:24 +01:00
|
|
|
buildFlagsArray = "-ldflags=-X main.Version=${version}";
|
2020-11-26 12:41:37 +00:00
|
|
|
doCheck = false;
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2016-09-27 14:49:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.gitlab.com/";
|
2019-10-09 14:45:12 +01:00
|
|
|
platforms = platforms.linux;
|
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
|
|
|
}
|