10 lines
146 B
Nix
10 lines
146 B
Nix
{ ... }:
|
|
res: pkgs: super:
|
|
|
|
with pkgs;
|
|
{
|
|
pango = callPackage ./. {
|
|
harfbuzz = harfbuzz.override { withCoreText = stdenv.isDarwin; };
|
|
};
|
|
}
|