aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw/default.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw/default.nix b/infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw/default.nix
new file mode 100644
index 000000000000..a291f1662883
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/misc/cups/drivers/hll2340dw/default.nix
@@ -0,0 +1,68 @@
+{stdenv, fetchurl, cups, dpkg, gnused, makeWrapper, ghostscript, file, a2ps, coreutils, gawk, perl, gnugrep, which}:
+
+let
+ version = "3.2.0-1";
+ lprdeb = fetchurl {
+ url = "https://download.brother.com/welcome/dlf101912/hll2340dlpr-${version}.i386.deb";
+ sha256 = "c0ae98b49b462cd8fbef445550f2177ce9d8bf627c904e182daa8cbaf8781e50";
+ };
+
+ cupsdeb = fetchurl {
+ url = "https://download.brother.com/welcome/dlf101913/hll2340dcupswrapper-${version}.i386.deb";
+ sha256 = "8aa24a6a825e3a4d5b51778cb46fe63032ec5a731ace22f9ef2b0ffcc2033cc9";
+ };
+
+in
+stdenv.mkDerivation {
+ name = "cups-brother-hll2340dw";
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = [ cups ghostscript dpkg a2ps ];
+
+ dontUnpack = true;
+
+ installPhase = ''
+ mkdir -p $out
+ dpkg-deb -x ${cupsdeb} $out
+ dpkg-deb -x ${lprdeb} $out
+
+ substituteInPlace $out/opt/brother/Printers/HLL2340D/lpd/filter_HLL2340D \
+ --replace /opt "$out/opt" \
+ --replace /usr/bin/perl ${perl}/bin/perl \
+ --replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$out/opt/brother/Printers/HLL2340D/\"; #" \
+ --replace "PRINTER =~" "PRINTER = \"HLL2340D\"; #"
+
+ patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ $out/opt/brother/Printers/HLL2340D/lpd/brprintconflsr3
+ patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ $out/opt/brother/Printers/HLL2340D/lpd/rawtobr3
+
+ for f in \
+ $out/opt/brother/Printers/HLL2340D/cupswrapper/brother_lpdwrapper_HLL2340D \
+ $out/opt/brother/Printers/HLL2340D/cupswrapper/paperconfigml1 \
+ ; do
+ wrapProgram $f \
+ --prefix PATH : ${stdenv.lib.makeBinPath [
+ coreutils ghostscript gnugrep gnused
+ ]}
+ done
+
+ mkdir -p $out/lib/cups/filter/
+ ln -s $out/opt/brother/Printers/HLL2340D/lpd/filter_HLL2340D $out/lib/cups/filter/brother_lpdwrapper_HLL2340D
+
+ mkdir -p $out/share/cups/model
+ ln -s $out/opt/brother/Printers/HLL2340D/cupswrapper/brother-HLL2340D-cups-en.ppd $out/share/cups/model/
+
+ wrapProgram $out/opt/brother/Printers/HLL2340D/lpd/filter_HLL2340D \
+ --prefix PATH ":" ${ stdenv.lib.makeBinPath [ ghostscript a2ps file gnused gnugrep coreutils which ] }
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.brother.com/";
+ description = "Brother hl-l2340dw printer driver";
+ license = licenses.unfree;
+ platforms = platforms.linux;
+ downloadPage = "https://support.brother.com/g/b/downloadlist.aspx?c=us&lang=es&prod=hll2340dw_us_eu_as&os=128&flang=English";
+ maintainers = [ maintainers.qknight ];
+ };
+}