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.
This commit is contained in:
Yarny0 2021-07-08 20:54:30 +02:00
parent bfe3271fc0
commit bafefd7ae2

View File

@ -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";