From bafefd7ae237ce6f82300a3093574c1c697bb8ce Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Thu, 8 Jul 2021 20:54:30 +0200 Subject: [PATCH] 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. --- pkgs/misc/cups/drivers/samsung/4.01.17.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/cups/drivers/samsung/4.01.17.nix b/pkgs/misc/cups/drivers/samsung/4.01.17.nix index dc9cb8f0515b..e03dbe458aba 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";