Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
110 lines
2.6 KiB
Nix
110 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cups,
|
|
perl,
|
|
ghostscript,
|
|
which,
|
|
makeWrapper,
|
|
}:
|
|
|
|
/*
|
|
[Setup instructions](http://support.brother.com/g/s/id/linux/en/instruction_prn1a.html).
|
|
|
|
URI example
|
|
~ `lpd://BRW0080927AFBCE/binary_p1`
|
|
|
|
Logging
|
|
-------
|
|
|
|
`/tmp/br_lpdfilter_ml1.log` when `$ENV{LPD_DEBUG} > 0` in `filter_BrGenML1`
|
|
which is activated automatically when `DEBUG > 0` in `brother_lpdwrapper_BrGenML1`
|
|
from the cups wrapper.
|
|
|
|
Issues
|
|
------
|
|
|
|
- filter_BrGenML1 ln 196 `my $GHOST_SCRIPT=`which gs`;`
|
|
|
|
`GHOST_SCRIPT` is empty resulting in an empty `/tmp/br_lpdfilter_ml1_gsout.dat` file.
|
|
See `/tmp/br_lpdfilter_ml1.log` for the executed command.
|
|
|
|
Notes
|
|
-----
|
|
|
|
- The `setupPrintcap` has totally no use in our context.
|
|
*/
|
|
|
|
let
|
|
myPatchElf = file: ''
|
|
patchelf --set-interpreter \
|
|
${stdenv.cc.libc}/lib/ld-linux${lib.optionalString stdenv.hostPlatform.is64bit "-x86-64"}.so.2 \
|
|
${file}
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "brgenml1lpr";
|
|
version = "3.1.0-1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.brother.com/welcome/dlf101123/brgenml1lpr-${version}.i386.deb";
|
|
sha256 = "0zdvjnrjrz9sba0k525linxp55lr4cyivfhqbkq1c11br2nvy09f";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
ar x $src
|
|
tar xfvz data.tar.gz
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [
|
|
cups
|
|
perl
|
|
stdenv.cc.libc
|
|
ghostscript
|
|
which
|
|
];
|
|
|
|
dontBuild = true;
|
|
|
|
patchPhase = ''
|
|
INFDIR=opt/brother/Printers/BrGenML1/inf
|
|
LPDDIR=opt/brother/Printers/BrGenML1/lpd
|
|
|
|
# Setup max debug log by default.
|
|
substituteInPlace $LPDDIR/filter_BrGenML1 \
|
|
--replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$out/opt/brother/Printers/BrGenML1\"; #" \
|
|
--replace "PRINTER =~" "PRINTER = \"BrGenML1\"; #"
|
|
|
|
${myPatchElf "$INFDIR/braddprinter"}
|
|
${myPatchElf "$LPDDIR/brprintconflsr3"}
|
|
${myPatchElf "$LPDDIR/rawtobr3"}
|
|
'';
|
|
|
|
installPhase = ''
|
|
INFDIR=opt/brother/Printers/BrGenML1/inf
|
|
LPDDIR=opt/brother/Printers/BrGenML1/lpd
|
|
|
|
mkdir -p $out/$INFDIR
|
|
cp -rp $INFDIR/* $out/$INFDIR
|
|
mkdir -p $out/$LPDDIR
|
|
cp -rp $LPDDIR/* $out/$LPDDIR
|
|
|
|
wrapProgram $out/$LPDDIR/filter_BrGenML1 \
|
|
--prefix PATH ":" "${ghostscript}/bin" \
|
|
--prefix PATH ":" "${which}/bin"
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
|
|
meta = {
|
|
description = "Brother BrGenML1 LPR driver";
|
|
homepage = "http://www.brother.com";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.unfreeRedistributable;
|
|
maintainers = with lib.maintainers; [ jraygauthier ];
|
|
};
|
|
}
|