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
67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
coreutils,
|
|
dpkg,
|
|
fetchurl,
|
|
ghostscript,
|
|
gnugrep,
|
|
gnused,
|
|
makeWrapper,
|
|
perl,
|
|
which,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mfcl2700dnlpr";
|
|
version = "3.2.0-1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.brother.com/welcome/dlf102085/${pname}-${version}.i386.deb";
|
|
sha256 = "170qdzxlqikzvv2wphvfb37m19mn13az4aj88md87ka3rl5knk4m";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
makeWrapper
|
|
];
|
|
|
|
dontUnpack = true;
|
|
|
|
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 \
|
|
--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
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 ];
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.tv ];
|
|
platforms = [ "i686-linux" ];
|
|
};
|
|
}
|