nix-config/modules/tools/multimedia/default.nix
2025-11-29 12:47:35 +01:00

25 lines
478 B
Nix

{ pkgs, ... }:
let
# Ghostscript has a name collision with gambit (scheme). Let's nuke the
# offending binary, as gsc most likely unused on my system.
ghostscriptNoGsc = pkgs.symlinkJoin {
name = "ghostscript-no-gsc";
paths = [ pkgs.ghostscript ];
postBuild = ''
rm -f $out/bin/gsc
'';
};
in
{
home.packages = with pkgs; [
dot2tex
ffmpeg
ghostscriptNoGsc
graphviz
imagemagick
inkscape
pdf2svg
poppler-utils
];
}