Add printing & EPFL CUPS drivers

This commit is contained in:
Natsu Kagami 2023-03-01 16:58:01 +01:00
parent 583ed20387
commit 7b47d07932
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
6 changed files with 8462 additions and 0 deletions

View file

@ -0,0 +1,3 @@
final: prev: {
epfl-cups-drivers = final.callPackage ./epfl-cups-drivers { };
}

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,6 @@
{ pkgs, runCommand, ... }: runCommand "epfl-cups-drivers" { } ''
mkdir -p $out/share/cups/model
cp ${./PPD-C5860-bw-EN.PPD} $out/share/cups/model
cp ${./PPD-C5860-color-EN.PPD} $out/share/cups/model
''