mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
69 lines
2.1 KiB
Nix
69 lines
2.1 KiB
Nix
{ lib, buildGoPackage, fetchFromGitLab, fetchurl, go-bindata }:
|
|
|
|
let
|
|
version = "9.3.0";
|
|
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
|
|
docker_x86_64 = fetchurl {
|
|
url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-x86_64.tar.xz";
|
|
sha256 = "1svml4k1zkmnw49sg4ipzl4fzvxx9rbj0643lwf6vm55j8xykhrq";
|
|
};
|
|
|
|
docker_arm = fetchurl {
|
|
url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz";
|
|
sha256 = "0xbbbjd7hvhlzi47rzf09fzcpkd7jrf80xk1y736px75yyvq3jr2";
|
|
};
|
|
in
|
|
buildGoPackage rec {
|
|
inherit version;
|
|
name = "gitlab-runner-${version}";
|
|
goPackagePath = "gitlab.com/gitlab-org/gitlab-ci-multi-runner";
|
|
commonPackagePath = "${goPackagePath}/common";
|
|
buildFlagsArray = ''
|
|
-ldflags=
|
|
-X ${commonPackagePath}.NAME=gitlab-runner
|
|
-X ${commonPackagePath}.VERSION=${version}
|
|
-X ${commonPackagePath}.REVISION=v${version}
|
|
'';
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-ci-multi-runner";
|
|
rev = "v${version}";
|
|
sha256 = "0ddsh31sqjp9xs6mv5jbmqvjq2hcy6j21grrn1m73z8blk4ylxsd";
|
|
};
|
|
|
|
patches = [ ./fix-shell-path.patch ];
|
|
|
|
buildInputs = [ go-bindata ];
|
|
|
|
preBuild = ''
|
|
(
|
|
# go-bindata names the assets after the filename thus we create a symlink with the name we want
|
|
cd go/src/${goPackagePath}
|
|
ln -sf ${docker_x86_64} prebuilt-x86_64.tar.xz
|
|
ln -sf ${docker_arm} prebuilt-arm.tar.xz
|
|
go-bindata \
|
|
-pkg docker \
|
|
-nocompress \
|
|
-nomemcopy \
|
|
-o executors/docker/bindata.go \
|
|
prebuilt-x86_64.tar.xz \
|
|
prebuilt-arm.tar.xz
|
|
)
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -d $out/bin
|
|
# The recommended name is gitlab-runner so we create a symlink with that name
|
|
ln -sf gitlab-ci-multi-runner $bin/bin/gitlab-runner
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GitLab Runner the continuous integration executor of GitLab";
|
|
license = licenses.mit;
|
|
homepage = https://about.gitlab.com/gitlab-ci/;
|
|
platforms = platforms.unix ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bachp zimbatm ];
|
|
};
|
|
}
|