Add some extra packages to Nixfile

This commit is contained in:
Justin Edmund 2025-01-18 22:31:03 -08:00
parent 322252a7e8
commit 23247989c3

View file

@ -1,9 +1,20 @@
[phases.setup]
nixPkgs = [
"imagemagick",
"ghostscript", # For PDF/PS operations
"pkgconfig", # For gem compilation
"libmagickwand" # ImageMagick C library
# For PDF/PS operations
"ghostscript",
# For gem compilation
"pkgconfig",
# ImageMagick C library
"libmagickwand",
# Font configuration
"fontconfig",
# A good fallback font
"dejavu_fonts",
# Arial-compatible fonts
"liberation_ttf",
# Font rendering
"freetype"
]
[phases.install]