about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorYarny0 <41838844+Yarny0@users.noreply.github.com>2021-07-08 20:54:30 +0200
committerYarny0 <41838844+Yarny0@users.noreply.github.com>2022-11-06 16:19:23 +0100
commitbafefd7ae237ce6f82300a3093574c1c697bb8ce (patch)
tree67f37f149fa87807f40099df5da0600fdeb6e6b2 /pkgs/misc
parentbfe3271fc0cc6d0a471f8ef4ebe466cd8cf4c949 (diff)
samsung-unified-linux-driver (cups driver): patch all filters
ppd files in the `samsung-unified-linux-driver`
package invoke these filter commands:

* pstosecps
* pstospl
* rastertospl
* pstosplc

The paths to all of those commands excluding the last one got
patched with their absolute paths during the build process.
This commit adds the last one to
the list of commands to be patched.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/cups/drivers/samsung/4.01.17.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/misc/cups/drivers/samsung/4.01.17.nix b/pkgs/misc/cups/drivers/samsung/4.01.17.nix
index dc9cb8f0515bb..e03dbe458abaf 100644
--- a/pkgs/misc/cups/drivers/samsung/4.01.17.nix
+++ b/pkgs/misc/cups/drivers/samsung/4.01.17.nix
@@ -74,7 +74,12 @@ in stdenv.mkDerivation rec {
     cp -r ./* $out/share/cups/model/samsung
   '';
 
-  ppdFileCommands = [ "pstosecps" "pstospl" "rastertospl" ];
+  ppdFileCommands = [
+    "pstosecps"
+    "pstospl"
+    "pstosplc"
+    "rastertospl"
+  ];
 
   meta = with lib; {
     description = "Samsung's Linux printing drivers; includes binaries without source code";