2024-05-02 00:46:19 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
with pkgs; {
|
|
|
|
fontforge = lowPrio (
|
|
|
|
callPackage ./. {
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
|
|
|
python = python3;
|
|
|
|
}
|
|
|
|
);
|
2024-05-02 00:46:19 +00:00
|
|
|
fontforge-gtk = fontforge.override {
|
|
|
|
withSpiro = true;
|
|
|
|
withGTK = true;
|
|
|
|
gtk3 = gtk3-x11;
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
|
|
|
};
|
|
|
|
|
|
|
|
fontforge-fonttools = callPackage ./fontforge-fonttools.nix { };
|
|
|
|
}
|