mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 18:34:38 +00:00
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.
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ coreutils, dpkg, fetchurl, gnugrep, gnused, makeWrapper,
|
|
mfcl8690cdwlpr, perl, lib, stdenv}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mfcl8690cdwcupswrapper";
|
|
version = "1.4.0-0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.brother.com/welcome/dlf103250/${pname}-${version}.i386.deb";
|
|
sha256 = "1bl9r8mmj4vnanwpfjqgq3c9lf2v46wp5k6r2n9iqprf7ldd1kb2";
|
|
};
|
|
|
|
nativeBuildInputs = [ dpkg makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
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 \
|
|
--prefix PATH : ${lib.makeBinPath [ coreutils gnugrep gnused ]}
|
|
|
|
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";
|
|
homepage = "http://www.brother.com/";
|
|
license = lib.licenses.unfree;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|