From 798e256dcd195addcf6babf8bdcd0c2579337ceb Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Mon, 12 Jun 2017 11:19:40 +0200 Subject: [PATCH] cups-filters: fix path to pdftops This is hardcoded to /usr/bin/pdftops by default. --- pkgs/misc/cups/filters.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix index 6d6fab265b1..fec0634ba68 100644 --- a/pkgs/misc/cups/filters.nix +++ b/pkgs/misc/cups/filters.nix @@ -25,6 +25,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "--with-pdftops=pdftops" + "--with-pdftops-path=${poppler_utils}/bin/pdftops" "--enable-imagefilters" "--with-rcdir=no" "--with-shell=${stdenv.shell}"