571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
75 lines
1.6 KiB
Nix
75 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, dpkg
|
|
, makeWrapper
|
|
, coreutils
|
|
, file
|
|
, gawk
|
|
, ghostscript
|
|
, gnused
|
|
, pkgsi686Linux
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mfc9140cdnlpr";
|
|
version = "1.1.2-1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.brother.com/welcome/dlf100405/${pname}-${version}.i386.deb";
|
|
sha256 = "1wqx8njrv078fc3vlq90qyrfg3cw9kr9m6f3qvfnkhq1f95fbslh";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
dpkg-deb -x $src $out
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
makeWrapper
|
|
];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
dir=$out/opt/brother/Printers/mfc9140cdn
|
|
|
|
patchelf --set-interpreter ${pkgsi686Linux.glibc.out}/lib/ld-linux.so.2 $dir/lpd/brmfc9140cdnfilter
|
|
|
|
wrapProgram $dir/inf/setupPrintcapij \
|
|
--prefix PATH : ${lib.makeBinPath [
|
|
coreutils
|
|
]}
|
|
|
|
substituteInPlace $dir/lpd/filtermfc9140cdn \
|
|
--replace "BR_CFG_PATH=" "BR_CFG_PATH=\"$dir/\" #" \
|
|
--replace "BR_LPD_PATH=" "BR_LPD_PATH=\"$dir/\" #"
|
|
|
|
wrapProgram $dir/lpd/filtermfc9140cdn \
|
|
--prefix PATH : ${lib.makeBinPath [
|
|
coreutils
|
|
file
|
|
ghostscript
|
|
gnused
|
|
]}
|
|
|
|
substituteInPlace $dir/lpd/psconvertij2 \
|
|
--replace '`which gs`' "${ghostscript}/bin/gs"
|
|
|
|
wrapProgram $dir/lpd/psconvertij2 \
|
|
--prefix PATH : ${lib.makeBinPath [
|
|
gnused
|
|
gawk
|
|
]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Brother MFC-9140CDN LPR printer driver";
|
|
homepage = "http://www.brother.com/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ hexa ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|