0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

Merge pull request #315240 from Cryolitia/ghost-font

ghostscript: add output `fonts`
This commit is contained in:
Aleksana 2024-06-15 19:32:39 +08:00 committed by GitHub
commit ee9cf00e6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 10 additions and 8 deletions

View file

@ -18,6 +18,6 @@ with lib;
};
config = mkIf config.fonts.enableGhostscriptFonts {
fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
fonts.packages = [ pkgs.ghostscript.fonts ];
};
}