tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
graphite2: Remove libgcc
It doesn't seem to be needed.
Zhaofeng Li
3 years ago
2e38eee4
110ec005
+1
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
silgraphite
graphite2.nix
+1
-4
pkgs/development/libraries/silgraphite/graphite2.nix
···
5
5
, freetype
6
6
, cmake
7
7
, static ? stdenv.hostPlatform.isStatic
8
8
-
, libgcc
9
8
}:
10
9
11
10
stdenv.mkDerivation rec {
···
19
18
};
20
19
21
20
nativeBuildInputs = [ pkg-config cmake ];
22
22
-
buildInputs = [ freetype ]
23
23
-
# On aarch64-darwin libgcc won't even build currently, and it doesn't seem needed.
24
24
-
++ lib.optionals (with stdenv; !cc.isGNU && !(isDarwin && isAarch64)) [ libgcc ];
21
21
+
buildInputs = [ freetype ];
25
22
26
23
patches = lib.optionals stdenv.isDarwin [ ./macosx.patch ];
27
24