nixpkgs/pkgs/misc/drivers/epkowa/default.nix

283 lines
9.5 KiB
Nix
Raw Normal View History

2017-05-26 20:05:43 +00:00
{stdenv, fetchurl, fetchpatch, makeWrapper, symlinkJoin,
pkgconfig, libtool,
gtk2,
libxml2,
libxslt,
libusb,
sane-backends,
rpm, cpio,
2018-06-24 15:36:11 +00:00
getopt,
patchelf, autoPatchelfHook, gcc
2017-05-26 20:05:43 +00:00
}:
let common_meta = {
homepage = "http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX";
license = with stdenv.lib.licenses; epson;
platforms = with stdenv.lib.platforms; linux;
};
in
############################
#
# PLUGINS
#
############################
# adding a plugin for another printer shouldn't be too difficult, but you need the firmware to test...
let plugins = {
v330 = stdenv.mkDerivation rec {
name = "iscan-v330-bundle";
2019-09-08 17:39:21 +00:00
version = "2.30.4";
src = fetchurl {
# To find new versions, visit
# http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
# some printer like for instance "WF-7210" to get to the most recent
# version.
# NOTE: Don't forget to update the webarchive link too!
urls = [
"https://download2.ebz.epson.net/iscan/plugin/perfection-v330/rpm/x64/iscan-perfection-v330-bundle-${version}.x64.rpm.tar.gz"
"https://web.archive.org/web/https://download2.ebz.epson.net/iscan/plugin/perfection-v330/rpm/x64/iscan-perfection-v330-bundle-${version}.x64.rpm.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "16iq5gmfcgkvcx5hixggxgb8lwin5gjdhnq0zabgpfqg11n2w21q";
};
2019-09-08 17:39:21 +00:00
nativeBuildInputs = [ autoPatchelfHook rpm ];
installPhase = ''
2019-09-08 17:39:21 +00:00
${rpm}/bin/rpm2cpio plugins/esci-interpreter-perfection-v330-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
mkdir $out{,/share,/lib}
cp -r ./usr/share/{iscan-data,esci}/ $out/share/
cp -r ./usr/lib64/esci $out/lib
'';
passthru = {
registrationCommand = ''
$registry --add interpreter usb 0x04b8 0x0142 "$plugin/lib/esci/libesci-interpreter-perfection-v330 $plugin/share/esci/esfwad.bin"
'';
hw = "Perfection V330 Photo";
};
meta = common_meta // { description = "Plugin to support "+passthru.hw+" scanner in sane."; };
};
2018-06-23 15:04:21 +00:00
x770 = stdenv.mkDerivation rec {
2018-11-05 16:38:20 +00:00
pname = "iscan-gt-x770-bundle";
2019-09-08 17:39:21 +00:00
version = "2.30.4";
2018-06-23 15:04:21 +00:00
2019-09-08 17:39:21 +00:00
nativeBuildInputs = [ autoPatchelfHook rpm ];
2018-06-23 15:04:21 +00:00
src = fetchurl {
urls = [
"https://download2.ebz.epson.net/iscan/plugin/gt-x770/rpm/x64/iscan-gt-x770-bundle-${version}.x64.rpm.tar.gz"
"https://web.archive.org/web/https://download2.ebz.epson.net/iscan/plugin/gt-x770/rpm/x64/iscan-gt-x770-bundle-${version}.x64.rpm.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "1cz4z3wz216s77z185m665jcgdslil5gn4dsi118nv1fm17z3jik";
2018-06-23 15:04:21 +00:00
};
installPhase = ''
cd plugins
2019-09-08 17:39:21 +00:00
${rpm}/bin/rpm2cpio iscan-plugin-gt-x770-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
2018-06-23 15:04:21 +00:00
mkdir $out
cp -r usr/share $out
cp -r usr/lib64 $out/lib
mv $out/share/iscan $out/share/esci
mv $out/lib/iscan $out/lib/esci
'';
passthru = {
registrationCommand = ''
$registry --add interpreter usb 0x04b8 0x0130 "$plugin/lib/esci/libesint7C $plugin/share/esci/esfw7C.bin"
'';
hw = "Perfection V500 Photo";
};
2018-06-24 15:36:11 +00:00
meta = common_meta // { description = "iscan esci x770 plugin for "+passthru.hw; };
2018-06-23 15:04:21 +00:00
};
2017-05-26 20:05:43 +00:00
f720 = stdenv.mkDerivation rec {
2018-11-05 16:38:20 +00:00
pname = "iscan-gt-f720-bundle";
2019-09-08 17:39:21 +00:00
version = "2.30.4";
2017-05-26 20:05:43 +00:00
2019-09-08 17:39:21 +00:00
nativeBuildInputs= [ autoPatchelfHook ];
buildInputs = [ gcc.cc.lib ];
2017-05-26 20:05:43 +00:00
src = fetchurl {
urls = [
"https://download2.ebz.epson.net/iscan/plugin/gt-f720/rpm/x64/iscan-gt-f720-bundle-${version}.x64.rpm.tar.gz"
"https://web.archive.org/web/https://download2.ebz.epson.net/iscan/plugin/gt-f720/rpm/x64/iscan-gt-f720-bundle-${version}.x64.rpm.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "12rivh00n9mhagy5yjl1m0bv7ypbig6brqkxm0a12xy0mjq7yv8y";
2017-05-26 20:05:43 +00:00
};
installPhase = ''
cd plugins
2019-09-08 17:39:21 +00:00
${rpm}/bin/rpm2cpio esci-interpreter-gt-f720-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
2017-05-26 20:05:43 +00:00
mkdir $out
cp -r usr/share $out
cp -r usr/lib64 $out/lib
'';
2019-09-08 17:39:21 +00:00
2017-05-26 20:05:43 +00:00
passthru = {
registrationCommand = ''
$registry --add interpreter usb 0x04b8 0x0131 "$plugin/lib/esci/libesci-interpreter-gt-f720 $plugin/share/esci/esfw8b.bin"
'';
hw = "GT-F720, GT-S620, Perfection V30, Perfection V300 Photo";
};
meta = common_meta // { description = "iscan esci f720 plugin for "+passthru.hw; };
};
2019-01-19 23:21:28 +00:00
s80 = stdenv.mkDerivation rec {
pname = "iscan-gt-s80-bundle";
2019-09-08 17:39:21 +00:00
version = "2.30.4";
2019-01-19 23:21:28 +00:00
2019-09-08 17:39:21 +00:00
nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [ gcc.cc.lib libtool ];
2019-01-19 23:21:28 +00:00
src = fetchurl {
urls = [
"https://download2.ebz.epson.net/iscan/plugin/gt-s80/rpm/x64/iscan-gt-s80-bundle-${version}.x64.rpm.tar.gz"
"https://web.archive.org/web/https://download2.ebz.epson.net/iscan/plugin/gt-s80/rpm/x64/iscan-gt-s80-bundle-${version}.x64.rpm.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "1ran75zsxcdci00jakngkz6p9lj4q483hjapmf80p68rzhpmdr5y";
2019-01-19 23:21:28 +00:00
};
installPhase = ''
cd plugins
2019-09-08 17:39:21 +00:00
${rpm}/bin/rpm2cpio esci-interpreter-gt-s80-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
${rpm}/bin/rpm2cpio iscan-plugin-esdip-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
2019-01-19 23:21:28 +00:00
mkdir $out
cp -r usr/share $out
cp -r usr/lib64 $out/lib
mkdir $out/share/esci
'';
2019-09-08 17:39:21 +00:00
2019-01-19 23:21:28 +00:00
passthru = {
registrationCommand = ''
$registry --add interpreter usb 0x04b8 0x0136 "$plugin/lib/esci/libesci-interpreter-gt-s80.so"
$registry --add interpreter usb 0x04b8 0x0137 "$plugin/lib/esci/libesci-interpreter-gt-s50.so"
$registry --add interpreter usb 0x04b8 0x0143 "$plugin/lib/esci/libesci-interpreter-gt-s50.so"
$registry --add interpreter usb 0x04b8 0x0144 "$plugin/lib/esci/libesci-interpreter-gt-s80.so"
'';
hw = "ES-D200, ED-D350, ES-D400, GT-S50, GT-S55, GT-S80, GT-S85";
};
meta = common_meta // { description = "iscan esci s80 plugin for "+passthru.hw; };
};
network = stdenv.mkDerivation rec {
pname = "iscan-nt-bundle";
2019-09-08 17:39:21 +00:00
# for the version, look for the driver of XP-750 in the search page
version = "2.30.4";
buildInputs = [ stdenv.cc.cc.lib ];
nativeBuildInputs = [ autoPatchelfHook ];
src = fetchurl {
urls = [
"https://download2.ebz.epson.net/iscan/general/rpm/x64/iscan-bundle-${version}.x64.rpm.tar.gz"
"https://web.archive.org/web/https://download2.ebz.epson.net/iscan/general/rpm/x64/iscan-bundle-${version}.x64.rpm.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "1l0y4dy88y91jdq66pxrxqmiwsxwy0rd7x4bh0cw08r4iyhjqprz";
};
installPhase = ''
cd plugins
2019-09-08 17:39:21 +00:00
${rpm}/bin/rpm2cpio iscan-network-nt-*.x86_64.rpm | ${cpio}/bin/cpio -idmv
mkdir $out
cp -r usr/share $out
cp -r usr/lib64 $out/lib
mkdir $out/share/esci
'';
passthru = {
registrationCommand = "";
hw = "network";
};
meta = common_meta // { description = "iscan network plugin"; };
};
2017-05-26 20:05:43 +00:00
};
in
let fwdir = symlinkJoin {
name = "esci-firmware-dir";
paths = stdenv.lib.mapAttrsToList (name: value: value + /share/esci) plugins;
};
in
let iscan-data = stdenv.mkDerivation rec {
pname = "iscan-data";
2019-09-08 17:39:21 +00:00
version = "1.39.1-2";
2017-05-26 20:05:43 +00:00
src = fetchurl {
urls = [
"http://support.epson.net/linux/src/scanner/iscan/iscan-data_${version}.tar.gz"
"https://web.archive.org/web/http://support.epson.net/linux/src/scanner/iscan/iscan-data_${version}.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "04zrvbnxf1k6zinrd13hwnbzscc3qhmwlvx3k2jhjys2lginw7w4";
2017-05-26 20:05:43 +00:00
};
buildInputs = [
libxslt
];
meta = common_meta;
};
in
stdenv.mkDerivation rec {
pname = "iscan";
2019-09-08 17:39:21 +00:00
version = "2.30.4-2";
2017-05-26 20:05:43 +00:00
src = fetchurl {
urls = [
"http://support.epson.net/linux/src/scanner/iscan/iscan_${version}.tar.gz"
"https://web.archive.org/web/http://support.epson.net/linux/src/scanner/iscan/iscan_${version}.tar.gz"
];
2019-09-08 17:39:21 +00:00
sha256 = "1ma76jj0k3bz0fy06fiyl4di4y77rcryb0mwjmzs5ms2vq9rjysr";
2017-05-26 20:05:43 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2017-05-26 20:05:43 +00:00
buildInputs = [
gtk2
libxml2
libtool
libusb
sane-backends
makeWrapper
];
patches = [
(fetchpatch {
urls = [
"https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf"
"https://web.archive.org/web/https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf"
];
2017-05-26 20:05:43 +00:00
sha256 = "04y70qjd220dpyh771fiq50lha16pms98mfigwjczdfmx6kpj1jd";
})
./firmware_location.patch
];
patchFlags = [ "-p0" ];
2017-05-26 20:05:43 +00:00
configureFlags = [ "--enable-dependency-reduction" "--disable-frontend"];
2017-05-26 20:05:43 +00:00
postConfigure = ''
echo '#define NIX_ESCI_PREFIX "'${fwdir}'"' >> config.h
'';
postInstall = ''
mkdir -p $out/etc/sane.d
cp backend/epkowa.conf $out/etc/sane.d
echo "epkowa" > $out/etc/sane.d/dll.conf
ln -s ${iscan-data}/share/iscan-data $out/share/iscan-data
mkdir -p $out/lib/iscan
ln -s ${plugins.network}/lib/iscan/network $out/lib/iscan/network
2017-05-26 20:05:43 +00:00
'';
postFixup = ''
# iscan-registry is a shell script requiring getopt
2018-06-24 15:36:11 +00:00
wrapProgram $out/bin/iscan-registry --prefix PATH : ${getopt}/bin
2017-05-26 20:05:43 +00:00
registry=$out/bin/iscan-registry;
'' +
stdenv.lib.concatStrings (stdenv.lib.mapAttrsToList (name: value: ''
plugin=${value};
${value.passthru.registrationCommand}
'') plugins);
meta = common_meta // {
description = "sane-epkowa backend for some epson scanners.";
longDescription = ''
Includes gui-less iscan (aka. Image Scan! for Linux).
Supported hardware: at least :
'' +
stdenv.lib.concatStringsSep ", " (stdenv.lib.mapAttrsToList (name: value: value.passthru.hw) plugins);
2018-01-22 14:59:13 +00:00
maintainers = with stdenv.lib.maintainers; [ symphorien ];
2017-05-26 20:05:43 +00:00
};
}