nixpkgs/pkgs/misc/cups/drivers/mfcl2700dnlpr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, coreutils, dpkg, fetchurl, ghostscript, gnugrep, gnused, makeWrapper, perl, which }:
2017-05-09 19:11:50 +00:00
stdenv.mkDerivation rec {
pname = "mfcl2700dnlpr";
2017-07-14 07:43:45 +00:00
version = "3.2.0-1";
2017-05-09 19:11:50 +00:00
src = fetchurl {
url = "https://download.brother.com/welcome/dlf102085/${pname}-${version}.i386.deb";
2017-05-09 19:11:50 +00:00
sha256 = "170qdzxlqikzvv2wphvfb37m19mn13az4aj88md87ka3rl5knk4m";
};
nativeBuildInputs = [ dpkg makeWrapper ];
2021-08-01 22:23:08 +00:00
dontUnpack = true;
2017-05-09 19:11:50 +00:00
installPhase = ''
dpkg-deb -x $src $out
dir=$out/opt/brother/Printers/MFCL2700DN
substituteInPlace $dir/lpd/filter_MFCL2700DN \
--replace /usr/bin/perl ${perl}/bin/perl \
--replace "BR_PRT_PATH =~" "BR_PRT_PATH = \"$dir\"; #" \
--replace "PRINTER =~" "PRINTER = \"MFCL2700DN\"; #"
wrapProgram $dir/lpd/filter_MFCL2700DN \
2021-01-15 13:21:58 +00:00
--prefix PATH : ${lib.makeBinPath [
2017-05-09 19:11:50 +00:00
coreutils ghostscript gnugrep gnused which
]}
interpreter=$(cat $NIX_CC/nix-support/dynamic-linker)
patchelf --set-interpreter "$interpreter" $dir/inf/braddprinter
patchelf --set-interpreter "$interpreter" $dir/lpd/brprintconflsr3
patchelf --set-interpreter "$interpreter" $dir/lpd/rawtobr3
'';
meta = {
description = "Brother MFC-L2700DN LPR driver";
homepage = "http://www.brother.com/";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
2021-01-15 13:21:58 +00:00
license = lib.licenses.unfree;
maintainers = [ lib.maintainers.tv ];
2017-05-09 19:11:50 +00:00
platforms = [ "i686-linux" ];
};
}