2018-08-03 19:18:32 +01:00
|
|
|
{ coreutils, dpkg, fetchurl, gnugrep, gnused, makeWrapper,
|
2021-01-15 13:21:58 +00:00
|
|
|
mfcl8690cdwlpr, perl, lib, stdenv}:
|
2018-08-03 19:18:32 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mfcl8690cdwcupswrapper";
|
2019-01-30 12:30:49 +00:00
|
|
|
version = "1.4.0-0";
|
2018-08-03 19:18:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://download.brother.com/welcome/dlf103250/${pname}-${version}.i386.deb";
|
2019-01-30 12:30:49 +00:00
|
|
|
sha256 = "1bl9r8mmj4vnanwpfjqgq3c9lf2v46wp5k6r2n9iqprf7ldd1kb2";
|
2018-08-03 19:18:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ dpkg makeWrapper ];
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
dpkg-deb -x $src $out
|
|
|
|
|
|
|
|
basedir=${mfcl8690cdwlpr}/opt/brother/Printers/mfcl8690cdw
|
|
|
|
dir=$out/opt/brother/Printers/mfcl8690cdw
|
|
|
|
|
|
|
|
substituteInPlace $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw \
|
|
|
|
--replace /usr/bin/perl ${perl}/bin/perl \
|
|
|
|
--replace "basedir =~" "basedir = \"$basedir/\"; #" \
|
|
|
|
--replace "PRINTER =~" "PRINTER = \"mfcl8690cdw\"; #"
|
|
|
|
|
|
|
|
wrapProgram $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw \
|
2021-01-15 13:21:58 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ coreutils gnugrep gnused ]}
|
2018-08-03 19:18:32 +01:00
|
|
|
|
|
|
|
mkdir -p $out/lib/cups/filter
|
|
|
|
mkdir -p $out/share/cups/model
|
|
|
|
|
|
|
|
ln $dir/cupswrapper/brother_lpdwrapper_mfcl8690cdw $out/lib/cups/filter
|
|
|
|
ln $dir/cupswrapper/brother_mfcl8690cdw_printer_en.ppd $out/share/cups/model
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Brother MFC-L8690CDW CUPS wrapper driver";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.brother.com/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.fuzzy-id ];
|
2018-08-03 19:18:32 +01:00
|
|
|
};
|
|
|
|
}
|