uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
94
pkgs/misc/cups/drivers/brgenml1lpr/default.nix
Normal file
94
pkgs/misc/cups/drivers/brgenml1lpr/default.nix
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
{ 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: with lib; ''
|
||||
patchelf --set-interpreter \
|
||||
${stdenv.cc.libc}/lib/ld-linux${optionalString stdenv.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";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.unfreeRedistributable;
|
||||
maintainers = with lib.maintainers; [ jraygauthier ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue