Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

graphite2: Remove libgcc

It doesn't seem to be needed.

+1 -4
+1 -4
pkgs/development/libraries/silgraphite/graphite2.nix
··· 5 5 , freetype 6 6 , cmake 7 7 , static ? stdenv.hostPlatform.isStatic 8 - , libgcc 9 8 }: 10 9 11 10 stdenv.mkDerivation rec { ··· 19 18 }; 20 19 21 20 nativeBuildInputs = [ pkg-config cmake ]; 22 - buildInputs = [ freetype ] 23 - # On aarch64-darwin libgcc won't even build currently, and it doesn't seem needed. 24 - ++ lib.optionals (with stdenv; !cc.isGNU && !(isDarwin && isAarch64)) [ libgcc ]; 21 + buildInputs = [ freetype ]; 25 22 26 23 patches = lib.optionals stdenv.isDarwin [ ./macosx.patch ]; 27 24