about summary refs log tree commit diff
path: root/pkgs/misc/cups/drivers/mfc5890cncupswrapper/default.nix
blob: 8ebcccbaa281914ec343bdd731b3ee9b09bb1aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{ lib
, findutils
, stdenv
, fetchurl
, dpkg
, makeWrapper
, coreutils
, gnugrep
, gnused
, mfc5890cnlpr
, pkgsi686Linux
, psutils
}:

stdenv.mkDerivation rec {
  pname = "mfc5890cncupswrapper";
  version = "1.1.2-2";

  src = fetchurl {
    url = "https://download.brother.com/welcome/dlf006170/${pname}-${version}.i386.deb";
    hash = "sha256-UOCwzB09/a1/2rliY+hTrslSvO5ztVj51auisPx7OIQ=";
  };

  unpackPhase = ''
    dpkg-deb -x $src $out
  '';

  nativeBuildInputs = [
    dpkg
    makeWrapper
  ];

  dontBuild = true;

  installPhase = ''
    lpr=${mfc5890cnlpr}/usr/local/Brother/Printer/mfc5890cn
    dir=$out/usr/local/Brother/Printer/mfc5890cn

    interpreter=${pkgsi686Linux.glibc.out}/lib/ld-linux.so.2
    patchelf --set-interpreter "$interpreter" "$dir/cupswrapper/brcupsconfpt1"

    #comment out lpadmin commands to prohibit changes to CUPS config by just installing this driver.
    substituteInPlace $dir/cupswrapper/cupswrappermfc5890cn \
      --replace "lpadmin" "#lpadmin" \
      --replace "/usr/" "$out/usr/"

    #mfc5890cnlpr is a dependency of this package. Link all files of mfc5890cnlpr into the $out/usr folder, as other scripts depend on these files being present.
    #Ideally, we would use substituteInPlace for each file this package actually requires. But the scripts of Brother use variables to dynamically build the paths
    #at runtime, making this approach more complex. Hence, the easier route of simply linking all files was choosen.
    find "$lpr" -type f -exec sh -c "mkdir -vp \$(echo '{}' | sed 's|$lpr|$dir|g' | xargs dirname) && ln -s '{}' \$(echo '{}' | sed 's|$lpr|$dir|g')" \;

    mkdir -p $out/usr/share/ppd/
    mkdir -p $out/usr/lib64/cups/filter
    sed -i '941,972d' $dir/cupswrapper/cupswrappermfc5890cn
    $dir/cupswrapper/cupswrappermfc5890cn

    chmod +x $out/usr/lib64/cups/filter/brlpdwrappermfc5890cn
    wrapProgram $out/usr/lib64/cups/filter/brlpdwrappermfc5890cn --prefix PATH : ${lib.makeBinPath [coreutils psutils gnugrep gnused]}

    mkdir -p $out/lib/cups/filter
    mkdir -p $out/share/cups/model
    ln $out/usr/lib64/cups/filter/brlpdwrappermfc5890cn $out/lib/cups/filter
    ln $dir/cupswrapper/cupswrappermfc5890cn $out/lib/cups/filter
    ln $out/usr/share/ppd/brmfc5890cn.ppd $out/share/cups/model
    '';

  meta = with lib; {
    description = "Brother MFC-5890CN CUPS wrapper driver";
    longDescription = "Brother MFC-5890CN CUPS wrapper driver. Use the connection string 'lpd://\${IP_ADDRESS}/binary_p1' when connecting to this printer via the network.";
    homepage = "http://www.brother.com/";
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ martinramm ];
  };
}