mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
31 lines
693 B
Nix
31 lines
693 B
Nix
{ lib, fetchFromGitLab, git, buildGoModule }:
|
|
let
|
|
data = lib.importJSON ../data.json;
|
|
in
|
|
buildGoModule rec {
|
|
pname = "gitlab-workhorse";
|
|
|
|
version = "14.8.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = data.owner;
|
|
repo = data.repo;
|
|
rev = data.rev;
|
|
sha256 = data.repo_hash;
|
|
};
|
|
|
|
sourceRoot = "source/workhorse";
|
|
|
|
vendorSha256 = "sha256-ps/MjNY2woHrfcsNZTurnO2TbasWdS3LiuPUfVD2Ypc=";
|
|
buildInputs = [ git ];
|
|
ldflags = [ "-X main.Version=${version}" ];
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.gitlab.com/";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ fpletz globin talyz yayayayaka ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|