mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
kyocera-ecosys-m2x35-40-p2x35-40dnw: init at 8.1606
This commit is contained in:
parent
9e81c86a44
commit
8a2856d973
2 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchzip
|
||||
# can either be "EU" or "Global"; it's unclear what the difference is
|
||||
, region ? "Global"
|
||||
# can be either "English", "French", "German", "Italian", "Portguese" or "Spanish"
|
||||
, language ? "English"
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cups-kyocera-ecosys-m2x35-40-p2x35-40dnw";
|
||||
version = "8.1606";
|
||||
|
||||
src = let
|
||||
urlVersion = builtins.replaceStrings [ "." ] [ "_" ] version;
|
||||
in fetchzip {
|
||||
url = "https://www.kyoceradocumentsolutions.de/content/download-center/de/drivers/all/Linux_${urlVersion}_ECOSYS_M2x35_40_P2x35_40dnw_zip.download.zip";
|
||||
sha256 = "10crxdfj62ini70vv471445zi6q0l9fmg2jsd74sp6fr0qa0kvr7";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/cups/model/Kyocera
|
||||
cp ${region}/${language}/*.PPD $out/share/cups/model/Kyocera/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "PPD files for Kyocera ECOSYS M2040dn/M2135dn/M2540dn/M2540dw/M2635dn/M2635dw/M2640idw/M2735dw/P2040dn/M2040dw/P2235dn/P2235dw";
|
||||
homepage = "https://www.kyoceradocumentsolutions.com";
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -31862,6 +31862,8 @@ with pkgs;
|
|||
|
||||
cups-kyocera = callPackage ../misc/cups/drivers/kyocera {};
|
||||
|
||||
cups-kyocera-ecosys-m2x35-40-p2x35-40dnw = callPackage ../misc/cups/drivers/kyocera-ecosys-m2x35-40-p2x35-40dnw {};
|
||||
|
||||
cups-kyocera-ecosys-m552x-p502x = callPackage ../misc/cups/drivers/kyocera-ecosys-m552x-p502x {};
|
||||
|
||||
cups-kyodialog3 = callPackage ../misc/cups/drivers/kyodialog3 {};
|
||||
|
|
Loading…
Reference in a new issue