nixpkgs/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix

27 lines
672 B
Nix
Raw Normal View History

{ lib, fetchFromGitLab, git, buildGoModule }:
2018-10-23 11:23:29 +01:00
2020-11-26 12:41:37 +00:00
buildGoModule rec {
pname = "gitlab-workhorse";
2021-03-20 14:04:54 +00:00
version = "8.63.2";
2018-09-21 08:31:30 +01:00
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
2021-03-20 14:04:54 +00:00
sha256 = "1vjk7r7228p2gblx9nmqiz70ckbllg1p3bwkyfd4m49jhp13hryi";
};
2021-03-20 14:04:54 +00:00
vendorSha256 = "0hc02nxw5jp1mhpjcx1f2a2dfaq7ji4qkf5g7lbpd1rzhqwp6zsz";
buildInputs = [ git ];
buildFlagsArray = "-ldflags=-X main.Version=${version}";
2020-11-26 12:41:37 +00:00
doCheck = false;
meta = with lib; {
homepage = "http://www.gitlab.com/";
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz globin talyz ];
2016-09-27 14:49:21 +01:00
license = licenses.mit;
};
}