about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitlab/gitlab-shell
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-07-09 20:09:15 -0400
committerFlorian Klink <flokli@flokli.de>2019-07-14 23:03:39 +0200
commit363b352af3cba175c55d47d94e86e9e289da7396 (patch)
treef70b9d63e839405be5444ab12bafe3b36642ed40 /pkgs/applications/version-management/gitlab/gitlab-shell
parentacb11340749109b49757f7a6b58ff8fa75e03ca3 (diff)
downloadnixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar.gz
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar.bz2
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar.lz
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar.xz
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.tar.zst
nixlib-363b352af3cba175c55d47d94e86e9e289da7396.zip
gitlab: 11.10.8 -> 12.0.3
This is a major version bump but things were generally straightforward
save two wrinkles:

 * it is necessary to ignore collisions in the gitlab bundler
   environment as both `omniauth_oauth2_generic` and
   `apollo_upload_server` provide a `console` executable.

 * grpc had to be patched since its build system expects the `AR`
   environment variable to contain not just the path to `ar` but
   also the `rpc` flags (see the discussion in nixpkgs #63056).
Diffstat (limited to 'pkgs/applications/version-management/gitlab/gitlab-shell')
-rw-r--r--pkgs/applications/version-management/gitlab/gitlab-shell/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
index be0cf838f908..faeed38c918b 100644
--- a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
+++ b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
@@ -1,14 +1,14 @@
 { stdenv, ruby, bundler, fetchFromGitLab, go }:
 
 stdenv.mkDerivation rec {
-  version = "9.0.0";
+  version = "9.3.0";
   name = "gitlab-shell-${version}";
 
   src = fetchFromGitLab {
     owner = "gitlab-org";
     repo = "gitlab-shell";
     rev = "v${version}";
-    sha256 = "0437pigcgd5qi9ars8br1l058h2mijyv02axlr8wdb1vjsss857g";
+    sha256 = "1r000h4sgplx7giqvqs5iy0zh3drf6qa1iiq0mxlk3h9fshs1348";
   };
 
   buildInputs = [ ruby bundler go ];