summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-02-24 02:05:30 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-02-24 02:05:30 +0200
commitae9d4faff9290044cdcd0c4ce91c65581e701259 (patch)
treee2cd3bd71c287e791a5c11c975c7a51744924f9f /pkgs/misc
parent19784ca4c9ac378539bdc535b02ae673ba6ba0b0 (diff)
parent7d37688d66bf830767ae39724406abd78347fcfb (diff)
downloadnixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar.gz
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar.bz2
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar.lz
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar.xz
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.tar.zst
nixpkgs-ae9d4faff9290044cdcd0c4ce91c65581e701259.zip
Merge remote-tracking branch 'upstream/master' into staging
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/cups/drivers/zj-58/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/misc/cups/drivers/zj-58/default.nix b/pkgs/misc/cups/drivers/zj-58/default.nix
new file mode 100644
index 00000000000..9321cf526be
--- /dev/null
+++ b/pkgs/misc/cups/drivers/zj-58/default.nix
@@ -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;
+  };
+}