core/pkgs/by-name/gh/ghostscript/packages.nix
2024-05-13 22:24:10 +01:00

15 lines
274 B
Nix

{ ... }:
res: pkgs: super:
with pkgs; {
ghostscript = callPackage ./. { };
ghostscriptX = ghostscript.override {
cupsSupport = true;
x11Support = true;
};
ghostscript_headless = ghostscript.override {
cupsSupport = false;
x11Support = false;
};
}