57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ stdenv, fetchurl, mfcj470dwlpr, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mfcj470dw-cupswrapper-${version}";
|
|
version = "3.0.0-1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.brother.com/welcome/dlf006866/mfcj470dw_cupswrapper_GPL_source_${version}.tar.gz";
|
|
sha256 = "b88f9b592723a00c024129560367f40a560ca3cba06fd99512ab368dd6855853";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ mfcj470dwlpr ];
|
|
|
|
patchPhase = ''
|
|
WRAPPER=cupswrapper/cupswrappermfcj470dw
|
|
|
|
substituteInPlace $WRAPPER \
|
|
--replace /opt "${mfcj470dwlpr}/opt" \
|
|
--replace /usr "${mfcj470dwlpr}/usr" \
|
|
--replace /etc "$out/etc"
|
|
|
|
substituteInPlace $WRAPPER \
|
|
--replace "\`cp " "\`cp -p " \
|
|
--replace "\`mv " "\`cp -p "
|
|
'';
|
|
|
|
buildPhase = ''
|
|
cd brcupsconfpt1
|
|
make all
|
|
cd ..
|
|
'';
|
|
|
|
installPhase = ''
|
|
TARGETFOLDER=$out/opt/brother/Printers/mfcj470dw/cupswrapper/
|
|
mkdir -p $out/opt/brother/Printers/mfcj470dw/cupswrapper/
|
|
|
|
cp brcupsconfpt1/brcupsconfpt1 $TARGETFOLDER
|
|
cp cupswrapper/cupswrappermfcj470dw $TARGETFOLDER/
|
|
cp PPD/brother_mfcj470dw_printer_en.ppd $TARGETFOLDER/
|
|
'';
|
|
|
|
cleanPhase = ''
|
|
cd brcupsconfpt1
|
|
make clean
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.brother.com/;
|
|
description = "Brother MFC-J470DW CUPS wrapper driver";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
downloadPage = http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj470dw_us_eu_as&os=128;
|
|
maintainers = [ stdenv.lib.maintainers.yochai ];
|
|
};
|
|
}
|