summary refs log tree commit diff
path: root/pkgs/misc/cups/drivers
diff options
context:
space:
mode:
authorYochai <yochai@titat.info>2015-10-23 19:51:05 +0300
committerYochai <yochai@titat.info>2015-10-23 19:51:05 +0300
commit837cdb03d346b55a1364bf26d94ddc7266016621 (patch)
tree363849121a13762295c290364cc717dba10d0e71 /pkgs/misc/cups/drivers
parent10c07911428563236b5248cbef4948baac610a42 (diff)
downloadnixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar.gz
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar.bz2
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar.lz
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar.xz
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.tar.zst
nixpkgs-837cdb03d346b55a1364bf26d94ddc7266016621.zip
mfcj470dw: init at 3.0.0-1
Diffstat (limited to 'pkgs/misc/cups/drivers')
-rw-r--r--pkgs/misc/cups/drivers/mfcj470dw/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/misc/cups/drivers/mfcj470dw/default.nix b/pkgs/misc/cups/drivers/mfcj470dw/default.nix
new file mode 100644
index 00000000000..2bb406fa56b
--- /dev/null
+++ b/pkgs/misc/cups/drivers/mfcj470dw/default.nix
@@ -0,0 +1,50 @@
+{stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, bash, file}:
+
+stdenv.mkDerivation rec {
+  name = "mfcj470dw-cupswrapper-${version}";
+  version = "3.0.0-1";
+  
+  srcs =
+    [ (fetchurl {
+        url = "http://download.brother.com/welcome/dlf006843/mfcj470dwlpr-${version}.i386.deb";
+        sha256 = "7202dd895d38d50bb767080f2995ed350eed99bc2b7871452c3c915c8eefc30a";
+      })
+      (fetchurl {
+        url = "http://download.brother.com/welcome/dlf006845/mfcj470dwcupswrapper-${version}.i386.deb";
+        sha256 = "92af9024e821159eccd78a8925fc77fb92b4f247f2d2c824ca303004077076a7";
+      })
+    ];
+  
+  buildInputs = [ dpkg cups patchelf bash ];
+  
+  unpackPhase = "true";
+  
+  installPhase = ''
+    for s in $srcs; do dpkg-deb -x $s $out; done
+    
+    substituteInPlace $out/opt/brother/Printers/mfcj470dw/cupswrapper/cupswrappermfcj470dw \
+      --replace /opt "$out/opt" \
+      --replace /usr "$out/usr" \
+      --replace /etc "$out/etc"
+    
+    substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw \
+      --replace /opt "$out/opt" \
+      --replace file "/run/current-system/sw/bin/file"
+    
+    sed -i '/GHOST_SCRIPT=/c\GHOST_SCRIPT=gs' $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2
+    
+    patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/lpd/brmfcj470dwfilter
+    patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/cupswrapper/brcupsconfpt1
+    
+    mkdir -p $out/lib/cups/filter/
+    ln -s $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw $out/lib/cups/filter/brother_lpdwrapper_mfcj470dw
+  '';
+  
+  meta = {
+    homepage = http://www.brother.com/;
+    description = "Driver for brother mfcj470dw pritners to print over WiFi and USB.";
+    license = stdenv.lib.licenses.unfree;
+    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;
+  };
+}