mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
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:
parent
bfe3271fc0
commit
bafefd7ae2
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user