diff options
author | makefu <github@syntax-fehler.de> | 2018-03-07 01:52:20 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-03-07 01:52:20 +0100 |
commit | bd8438858ef06737602501cbbb697a7da50de45d (patch) | |
tree | 860e818f119d6f6405d7a295c61585e81dffc6c4 /makefu/5pkgs | |
parent | 6b647a237a5f4db23b7eff70f305be7106da7711 (diff) |
ma pkgs.zj-58: init
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r-- | makefu/5pkgs/zj-58/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/makefu/5pkgs/zj-58/default.nix b/makefu/5pkgs/zj-58/default.nix new file mode 100644 index 000000000..6eda84959 --- /dev/null +++ b/makefu/5pkgs/zj-58/default.nix @@ -0,0 +1,30 @@ +{stdenv, fetchFromGitHub, cups}: + +stdenv.mkDerivation rec { + name = "cups-zj58-2018-02-22"; + + 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; + }; +} |