core/pkgs/by-name/gh/ghostscript/packages.nix
2024-05-13 11:34:52 -04:00

17 lines
275 B
Nix

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