2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitLab, git, buildGoModule }:
|
2021-04-07 14:52:15 +00:00
|
|
|
let
|
2021-11-03 12:43:23 +00:00
|
|
|
data = lib.importJSON ../data.json;
|
2021-04-07 14:52:15 +00:00
|
|
|
in
|
2020-11-26 12:41:37 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gitlab-workhorse";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2021-12-07 09:49:42 +00:00
|
|
|
version = "14.5.2";
|
2018-09-21 07:31:30 +00:00
|
|
|
|
2018-11-23 13:47:18 +00:00
|
|
|
src = fetchFromGitLab {
|
2021-04-07 14:52:15 +00:00
|
|
|
owner = data.owner;
|
|
|
|
repo = data.repo;
|
|
|
|
rev = data.rev;
|
|
|
|
sha256 = data.repo_hash;
|
2016-01-30 13:47:04 +00:00
|
|
|
};
|
|
|
|
|
2021-04-07 14:52:15 +00:00
|
|
|
sourceRoot = "source/workhorse";
|
|
|
|
|
2021-10-25 08:35:38 +00:00
|
|
|
vendorSha256 = "sha256-yLZY9FFUS4nJl4TkE6MwICCEwtPTXFc5zuj4FgiIy74=";
|
2019-10-01 13:38:22 +00:00
|
|
|
buildInputs = [ git ];
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-X main.Version=${version}" ];
|
2020-11-26 12:41:37 +00:00
|
|
|
doCheck = false;
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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
|
|
|
}
|