Skip to content

Commit 4f6ab29

Browse files
committedMay 24, 2017
gitlab-runner: 9.1.0 -> 9.2.0
1 parent 87a651d commit 4f6ab29

File tree

1 file changed

+6
-6
lines changed
  • pkgs/development/tools/continuous-integration/gitlab-runner

1 file changed

+6
-6
lines changed
 

‎pkgs/development/tools/continuous-integration/gitlab-runner/default.nix

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{ lib, buildGoPackage, fetchFromGitLab, fetchurl, go-bindata }:
22

33
let
4-
version = "9.1.0";
4+
version = "9.2.0";
55
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
66
docker_x86_64 = fetchurl {
77
url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-x86_64.tar.xz";
8-
sha256 = "1mdcw755fygnf30v0gr13mx20zjqmxg5w2kj3k2jgcsh3gyrvymr";
8+
sha256 = "0x6pwh3wjq2czvzb8rl8npa8a58snwf1f9dwr6rbbxijaf886jfc";
99
};
1010

1111
docker_arm = fetchurl {
1212
url = "https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz";
13-
sha256 = "1m5p6mlhy3xf0chrjlfpdyp24pv32b61s8iryh6a617i91vpzjg6";
13+
sha256 = "1y6i5dn1l1qlwyg95qw4sff2y9zypxwmvsw4mb0555vf157h88kg";
1414
};
1515
in
1616
buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
2929
owner = "gitlab-org";
3030
repo = "gitlab-ci-multi-runner";
3131
rev = "v${version}";
32-
sha256 = "0n8hcj2b1pb95x4bd7fb9ri43vgc4h2dj2v3iiziw2imqjyphfx4";
32+
sha256 = "0gz6byjnnfn9acy40hcbyzdql4199xn0yvjx2cfjjjzd9kryjrxp";
3333
};
3434

3535
buildInputs = [ go-bindata ];
@@ -60,7 +60,7 @@ buildGoPackage rec {
6060
description = "GitLab Runner the continuous integration executor of GitLab";
6161
license = licenses.mit;
6262
homepage = "https://about.gitlab.com/gitlab-ci/";
63-
platforms = platforms.unix;
64-
maintainers = [ lib.maintainers.bachp ];
63+
platforms = platforms.unix ++ platforms.darwin;
64+
maintainers = with maintainers; [ bachp zimbatm ];
6565
};
6666
}

0 commit comments

Comments
 (0)
Please sign in to comment.