refactor
This commit is contained in:
parent
1206380efd
commit
7203fc1ed9
51 changed files with 175 additions and 108 deletions
18
nixos/fuchsia/services/printers/lw5xl.nix
Normal file
18
nixos/fuchsia/services/printers/lw5xl.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{stdenv}: let
|
||||
lw5xl = ./lw5xl.ppd;
|
||||
raster2dymolw_v2 = ./raster2dymolw_v2;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lw5xw-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = ./.;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/cups/model/
|
||||
cp ${lw5xl} $out/share/cups/model/
|
||||
|
||||
mkdir -p $out/lib/cups/filter/
|
||||
cp ${raster2dymolw_v2} $out/lib/cups/filter/raster2dymolw_v2
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue