Merge pull request #35401 from makefu/pkgs/cups-zj-58/init
cups-zj-58: init at 2018-02-22
This commit is contained in:
commit
eb05f92c08
2 changed files with 31 additions and 0 deletions
29
pkgs/misc/cups/drivers/zj-58/default.nix
Normal file
29
pkgs/misc/cups/drivers/zj-58/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{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 = ''
|
||||
install -D rastertozj $out/lib/cups/filter/rastertozj
|
||||
install -D ZJ-58.ppd $out/share/cups/model/zjiang/ZJ-58.ppd
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "CUPS filter for thermal printer Zjiang ZJ-58";
|
||||
homepage = https://github.com/klirichek/zj-58;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
license = licenses.bsd2;
|
||||
};
|
||||
}
|
|
@ -19937,6 +19937,8 @@ with pkgs;
|
|||
|
||||
cups-toshiba-estudio = callPackage ../misc/cups/drivers/estudio {};
|
||||
|
||||
cups-zj-58 = callPackage ../misc/cups/drivers/zj-58 { };
|
||||
|
||||
crashplan = callPackage ../applications/backup/crashplan { };
|
||||
crashplansb = callPackage ../applications/backup/crashplan/crashplan-small-business.nix { inherit (gnome3) gconf; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue