cups-zj-58: init at 2018-02-22
Adds cups drivers for Zjiang ZJ-58
This commit is contained in:
parent
098c7f3d94
commit
7ca25bdfcf
32
pkgs/misc/cups/drivers/zj-58/default.nix
Normal file
32
pkgs/misc/cups/drivers/zj-58/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{stdenv, fetchFromGitHub, cups}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cups-zj-58";
|
||||||
|
version = "2018-02-22";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "klirichek";
|
||||||
|
repo = "zj-58";
|
||||||
|
rev = "e4212cd";
|
||||||
|
sha256 = "1w2qkspm4qqg5h8n6gmakzhiww7gag64chvy9kf89xsl3wsyp6pi";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [cups];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/cups/filter
|
||||||
|
cp rastertozj $out/lib/cups/filter
|
||||||
|
|
||||||
|
mkdir -p $out/share/cups/model/zjiang
|
||||||
|
cp ZJ-58.ppd $out/share/cups/model/zjiang/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "CUPS filter for thermal printer Zjiang ZJ-58";
|
||||||
|
homepage = https://github.com/klirichek/zj-58;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
||||||
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
};
|
||||||
|
}
|
@ -19937,6 +19937,8 @@ with pkgs;
|
|||||||
|
|
||||||
cups-toshiba-estudio = callPackage ../misc/cups/drivers/estudio {};
|
cups-toshiba-estudio = callPackage ../misc/cups/drivers/estudio {};
|
||||||
|
|
||||||
|
cups-zj-58 = callPackage ../misc/cups/drivers/zj-58 { };
|
||||||
|
|
||||||
crashplan = callPackage ../applications/backup/crashplan { };
|
crashplan = callPackage ../applications/backup/crashplan { };
|
||||||
crashplansb = callPackage ../applications/backup/crashplan/crashplan-small-business.nix { inherit (gnome3) gconf; };
|
crashplansb = callPackage ../applications/backup/crashplan/crashplan-small-business.nix { inherit (gnome3) gconf; };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user