From 74769b67998112f77eac423a4f96730ea0e02e2b Mon Sep 17 00:00:00 2001 From: talyz Date: Tue, 3 Mar 2020 20:13:49 +0100 Subject: [PATCH] gitaly: Copy gem files into bundler env instead of symlinking This fixes issue #79374, where gitaly prints warning messages on the client side when running push or fetch. --- pkgs/applications/version-management/gitlab/gitaly/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index 1e77176ec6e8..bac51cd278c2 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -5,6 +5,7 @@ let rubyEnv = bundlerEnv rec { name = "gitaly-env"; inherit ruby; + copyGemFiles = true; gemdir = ./.; gemset = let x = import (gemdir + "/gemset.nix");