From 676aeada576ae093164658837b96c4c746080761 Mon Sep 17 00:00:00 2001 From: Jan Riedel Date: Thu, 4 Apr 2024 22:59:43 +0200 Subject: [PATCH] jetbrains.gateway: add libgcc to fix build --- pkgs/applications/editors/jetbrains/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index c77f06d65c29..fa055bd83050 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -141,7 +141,10 @@ rec { extraBuildInputs = [ libgcc libr stdenv.cc.cc ]; }; - gateway = mkJetBrainsProduct { pname = "gateway"; }; + gateway = mkJetBrainsProduct { + pname = "gateway"; + extraBuildInputs = [ libgcc ]; + }; goland = (mkJetBrainsProduct { pname = "goland";