summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/utils/pdf2pdf.nix
blob: aba897f07655f7c32c0cca32144228ef7cbc5778 (plain)
1
2
3
4
5
6
7
8
pkgs@{ lib, resholve, zsh, ghostscript, ... }:

resholve.writeScriptBin "pdf2pdf" {
  inputs = with pkgs; [ghostscript];
  interpreter = lib.getExe zsh;
} ''
  exec gs -dPDFSETTINGS=/prepress -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dSAFER "-sOutputFile=''${2}" "''${1}"
''