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] [phases.setup]
nixPkgs = [ nixPkgs = [
"imagemagick", "imagemagick",
"ghostscript", # For PDF/PS operations # For PDF/PS operations
"pkgconfig", # For gem compilation "ghostscript",
"libmagickwand" # ImageMagick C library # 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] [phases.install]