2015-11-20 20:08:41 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll
|
|
|
|
, pkgconfig
|
2019-12-19 00:45:32 +00:00
|
|
|
, cups, zlib, libjpeg, libusb1, python3Packages, sane-backends
|
2018-02-21 03:48:31 +00:00
|
|
|
, dbus, file, ghostscript, usbutils
|
2021-01-05 08:23:16 +00:00
|
|
|
, net-snmp, openssl, perl, nettools, avahi
|
2020-11-24 15:29:28 +00:00
|
|
|
, bash, coreutils, util-linux
|
2020-05-31 20:45:30 +01:00
|
|
|
# To remove references to gcc-unwrapped
|
2020-06-16 19:34:30 +01:00
|
|
|
, removeReferencesTo, qt5
|
2017-09-22 12:57:31 +01:00
|
|
|
, withQt5 ? true
|
2015-11-20 20:08:41 +00:00
|
|
|
, withPlugin ? false
|
2018-02-21 03:48:31 +00:00
|
|
|
, withStaticPPDInstall ? false
|
2010-06-18 09:16:17 +01:00
|
|
|
}:
|
|
|
|
|
2015-01-21 13:42:30 +00:00
|
|
|
let
|
|
|
|
|
2021-01-05 08:23:16 +00:00
|
|
|
pname = "hplip";
|
|
|
|
version = "3.20.11";
|
2010-06-18 09:16:17 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-05 08:23:16 +00:00
|
|
|
url = "mirror://sourceforge/hplip/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "CxZ1s9jnCaEyX+hj9arOO9NxB3mnPq6Gj3su6aVv2xE=";
|
2015-07-22 19:58:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
plugin = fetchurl {
|
2021-01-05 08:23:16 +00:00
|
|
|
url = "https://developers.hp.com/sites/default/files/${pname}-${version}-plugin.run";
|
|
|
|
sha256 = "r8PoQQFfjdHKySPCFwtDR8Tl6v5Eag9gXpBAp6sCF9Q=";
|
2010-06-18 09:16:17 +01:00
|
|
|
};
|
|
|
|
|
2017-06-10 10:04:33 +01:00
|
|
|
hplipState = substituteAll {
|
|
|
|
inherit version;
|
|
|
|
src = ./hplip.state;
|
|
|
|
};
|
|
|
|
|
|
|
|
hplipPlatforms = {
|
2019-08-13 22:52:01 +01:00
|
|
|
i686-linux = "x86_32";
|
|
|
|
x86_64-linux = "x86_64";
|
|
|
|
armv6l-linux = "arm32";
|
|
|
|
armv7l-linux = "arm32";
|
2019-01-05 08:35:20 +00:00
|
|
|
aarch64-linux = "aarch64";
|
2017-06-10 10:04:33 +01:00
|
|
|
};
|
2015-05-16 20:12:11 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
hplipArch = hplipPlatforms.${stdenv.hostPlatform.system}
|
2018-08-20 20:11:29 +01:00
|
|
|
or (throw "HPLIP not supported on ${stdenv.hostPlatform.system}");
|
2015-11-20 20:47:17 +00:00
|
|
|
|
2019-01-05 08:35:20 +00:00
|
|
|
pluginArches = [ "x86_32" "x86_64" "arm32" "aarch64" ];
|
2015-10-20 23:53:31 +01:00
|
|
|
|
2015-01-21 13:42:30 +00:00
|
|
|
in
|
|
|
|
|
2015-11-20 20:47:17 +00:00
|
|
|
assert withPlugin -> builtins.elem hplipArch pluginArches
|
2018-08-20 20:11:29 +01:00
|
|
|
|| throw "HPLIP plugin not supported on ${stdenv.hostPlatform.system}";
|
2015-11-20 20:47:17 +00:00
|
|
|
|
2019-12-19 00:45:32 +00:00
|
|
|
python3Packages.buildPythonApplication {
|
2021-01-05 08:23:16 +00:00
|
|
|
inherit pname version src;
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2010-06-18 09:16:17 +01:00
|
|
|
|
2015-07-22 19:21:32 +01:00
|
|
|
buildInputs = [
|
|
|
|
libjpeg
|
|
|
|
cups
|
|
|
|
libusb1
|
2016-01-03 02:31:38 +00:00
|
|
|
sane-backends
|
2015-07-22 19:21:32 +01:00
|
|
|
dbus
|
2018-02-21 03:48:31 +00:00
|
|
|
file
|
|
|
|
ghostscript
|
2019-12-21 22:44:50 +00:00
|
|
|
net-snmp
|
2016-04-18 12:27:14 +01:00
|
|
|
openssl
|
2018-02-21 03:48:31 +00:00
|
|
|
perl
|
2018-03-12 19:48:45 +00:00
|
|
|
zlib
|
2021-01-05 08:23:16 +00:00
|
|
|
avahi
|
2015-11-20 20:16:40 +00:00
|
|
|
];
|
|
|
|
|
2020-06-16 19:34:30 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
removeReferencesTo
|
|
|
|
] ++ stdenv.lib.optional withQt5 qt5.wrapQtAppsHook;
|
2015-07-22 19:21:32 +01:00
|
|
|
|
2019-12-19 00:45:32 +00:00
|
|
|
pythonPath = with python3Packages; [
|
2015-07-22 19:21:32 +01:00
|
|
|
dbus
|
|
|
|
pillow
|
hplip: Add missing library
Otherwise, things like `hp-setup` fail finding gi:
```
HP Linux Imaging and Printing System (ver. 3.20.5)
Printer/Fax Setup Utility ver. 9.0
Copyright (c) 2001-18 HP Development Company, LP
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to distribute it
under certain conditions. See COPYING file for more details.
Traceback (most recent call last):
File "/nix/store/rmzq8c4n47s4q4p31w18waz0zrba2ljl-hplip-3.20.5/share/hplip/setup.py", line 314, in <module>
ui = import_module(ui_package + ".setupdialog")
File "/nix/store/n0b076p351ma864q38if4yglsg99hw2s-python3-3.8.3/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 783, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/nix/store/rmzq8c4n47s4q4p31w18waz0zrba2ljl-hplip-3.20.5/share/hplip/ui5/setupdialog.py", line 31, in <module>
from base import device, utils, models, pkit
File "/nix/store/rmzq8c4n47s4q4p31w18waz0zrba2ljl-hplip-3.20.5/share/hplip/base/pkit.py", line 38, in <module>
from gi import _gobject as gobject
ModuleNotFoundError: No module named 'gi'
```
2020-06-16 14:55:01 +01:00
|
|
|
pygobject3
|
2015-07-22 19:21:32 +01:00
|
|
|
reportlab
|
2015-07-22 19:54:57 +01:00
|
|
|
usbutils
|
2018-03-27 11:29:29 +01:00
|
|
|
sip
|
2019-12-19 03:49:30 +00:00
|
|
|
dbus-python
|
2017-09-22 12:57:31 +01:00
|
|
|
] ++ stdenv.lib.optionals withQt5 [
|
|
|
|
pyqt5
|
2019-03-30 23:20:17 +00:00
|
|
|
enum-compat
|
2015-11-20 20:16:40 +00:00
|
|
|
];
|
2015-07-22 19:21:32 +01:00
|
|
|
|
2018-01-09 00:20:47 +00:00
|
|
|
makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ];
|
2017-09-20 23:03:12 +01:00
|
|
|
|
2019-06-30 14:15:28 +01:00
|
|
|
patches = [
|
|
|
|
# remove ImageProcessor usage, it causes segfaults, see
|
|
|
|
# https://bugs.launchpad.net/hplip/+bug/1788706
|
|
|
|
# https://bugs.launchpad.net/hplip/+bug/1787289
|
|
|
|
./image-processor.patch
|
|
|
|
];
|
|
|
|
|
2010-06-18 09:16:17 +01:00
|
|
|
prePatch = ''
|
2014-05-10 23:33:46 +01:00
|
|
|
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
|
2015-05-13 11:20:34 +01:00
|
|
|
find . -type f -exec sed -i \
|
2018-01-25 13:28:56 +00:00
|
|
|
-e s,/etc/hp,$out/etc/hp,g \
|
|
|
|
-e s,/etc/sane.d,$out/etc/sane.d,g \
|
|
|
|
-e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0,g \
|
|
|
|
-e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor,g \
|
|
|
|
-e s,/usr/lib/systemd/system,$out/lib/systemd/system,g \
|
|
|
|
-e s,/var/lib/hp,$out/var/lib/hp,g \
|
2018-02-21 03:48:31 +00:00
|
|
|
-e s,/usr/bin/perl,${perl}/bin/perl,g \
|
|
|
|
-e s,/usr/bin/file,${file}/bin/file,g \
|
|
|
|
-e s,/usr/bin/gs,${ghostscript}/bin/gs,g \
|
|
|
|
-e s,/usr/share/cups/fonts,${ghostscript}/share/ghostscript/fonts,g \
|
|
|
|
-e "s,ExecStart=/usr/bin/python /usr/bin/hp-config_usb_printer,ExecStart=$out/bin/hp-config_usb_printer,g" \
|
2015-05-13 11:20:34 +01:00
|
|
|
{} +
|
2010-06-18 09:16:17 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-04 18:29:35 +01:00
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags
|
2017-09-20 20:04:55 +01:00
|
|
|
--with-hpppddir=$out/share/cups/model/HP
|
2015-08-04 18:29:35 +01:00
|
|
|
--with-cupsfilterdir=$out/lib/cups/filter
|
|
|
|
--with-cupsbackenddir=$out/lib/cups/backend
|
|
|
|
--with-icondir=$out/share/applications
|
|
|
|
--with-systraydir=$out/xdg/autostart
|
|
|
|
--with-mimedir=$out/etc/cups
|
|
|
|
--enable-policykit
|
2018-02-21 03:48:31 +00:00
|
|
|
${stdenv.lib.optionalString withStaticPPDInstall "--enable-cups-ppd-install"}
|
2018-01-25 13:28:56 +00:00
|
|
|
--disable-qt4
|
2018-03-12 19:48:45 +00:00
|
|
|
${stdenv.lib.optionalString withQt5 "--enable-qt5"}
|
2015-08-04 18:29:35 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
export makeFlags="
|
|
|
|
halpredir=$out/share/hal/fdi/preprobe/10osvendor
|
|
|
|
rulesdir=$out/etc/udev/rules.d
|
|
|
|
policykit_dir=$out/share/polkit-1/actions
|
|
|
|
policykit_dbus_etcdir=$out/etc/dbus-1/system.d
|
|
|
|
policykit_dbus_sharedir=$out/share/dbus-1/system-services
|
|
|
|
hplip_confdir=$out/etc/hp
|
|
|
|
hplip_statedir=$out/var/lib/hp
|
|
|
|
"
|
2018-02-21 03:48:31 +00:00
|
|
|
|
|
|
|
# Prevent 'ppdc: Unable to find include file "<font.defs>"' which prevent
|
|
|
|
# generation of '*.ppd' files.
|
|
|
|
# This seems to be a 'ppdc' issue when the tool is run in a hermetic sandbox.
|
|
|
|
# Could not find how to fix the problem in 'ppdc' so this is a workaround.
|
|
|
|
export CUPS_DATADIR="${cups}/share/cups"
|
2015-07-22 19:58:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-02-21 03:48:31 +00:00
|
|
|
#
|
|
|
|
# Running `hp-diagnose_plugin -g` can be used to diagnose
|
|
|
|
# issues with plugins.
|
|
|
|
#
|
2016-04-01 20:07:40 +01:00
|
|
|
postInstall = stdenv.lib.optionalString withPlugin ''
|
2014-05-10 23:33:46 +01:00
|
|
|
sh ${plugin} --noexec --keep
|
|
|
|
cd plugin_tmp
|
|
|
|
|
|
|
|
cp plugin.spec $out/share/hplip/
|
|
|
|
|
|
|
|
mkdir -p $out/share/hplip/data/firmware
|
|
|
|
cp *.fw.gz $out/share/hplip/data/firmware
|
|
|
|
|
|
|
|
mkdir -p $out/share/hplip/data/plugins
|
|
|
|
cp license.txt $out/share/hplip/data/plugins
|
|
|
|
|
|
|
|
mkdir -p $out/share/hplip/prnt/plugins
|
|
|
|
for plugin in lj hbpl1; do
|
2015-11-20 20:14:57 +00:00
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/prnt/plugins
|
2018-02-21 03:48:31 +00:00
|
|
|
chmod 0755 $out/share/hplip/prnt/plugins/$plugin-${hplipArch}.so
|
2015-11-20 20:14:57 +00:00
|
|
|
ln -s $out/share/hplip/prnt/plugins/$plugin-${hplipArch}.so \
|
2014-05-10 23:33:46 +01:00
|
|
|
$out/share/hplip/prnt/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/share/hplip/scan/plugins
|
2018-02-21 03:48:31 +00:00
|
|
|
for plugin in bb_soap bb_marvell bb_soapht bb_escl; do
|
2015-11-20 20:14:57 +00:00
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/scan/plugins
|
2018-02-21 03:48:31 +00:00
|
|
|
chmod 0755 $out/share/hplip/scan/plugins/$plugin-${hplipArch}.so
|
2015-11-20 20:14:57 +00:00
|
|
|
ln -s $out/share/hplip/scan/plugins/$plugin-${hplipArch}.so \
|
2014-05-10 23:33:46 +01:00
|
|
|
$out/share/hplip/scan/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
2018-02-21 03:48:31 +00:00
|
|
|
mkdir -p $out/share/hplip/fax/plugins
|
|
|
|
for plugin in fax_marvell; do
|
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/fax/plugins
|
|
|
|
chmod 0755 $out/share/hplip/fax/plugins/$plugin-${hplipArch}.so
|
|
|
|
ln -s $out/share/hplip/fax/plugins/$plugin-${hplipArch}.so \
|
|
|
|
$out/share/hplip/fax/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
2014-05-10 23:33:46 +01:00
|
|
|
mkdir -p $out/var/lib/hp
|
2015-11-20 20:14:57 +00:00
|
|
|
cp ${hplipState} $out/var/lib/hp/hplip.state
|
2015-11-20 20:47:17 +00:00
|
|
|
'';
|
2015-07-22 19:21:32 +01:00
|
|
|
|
2017-09-20 23:03:12 +01:00
|
|
|
# The installed executables are just symlinks into $out/share/hplip,
|
|
|
|
# but wrapPythonPrograms ignores symlinks. We cannot replace the Python
|
|
|
|
# modules in $out/share/hplip with wrapper scripts because they import
|
|
|
|
# each other as libraries. Instead, we emulate wrapPythonPrograms by
|
|
|
|
# 1. Calling patchPythonProgram on the original script in $out/share/hplip
|
|
|
|
# 2. Making our own wrapper pointing directly to the original script.
|
|
|
|
dontWrapPythonPrograms = true;
|
|
|
|
preFixup = ''
|
|
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
|
|
|
|
for bin in $out/bin/*; do
|
|
|
|
py=$(readlink -m $bin)
|
|
|
|
rm $bin
|
|
|
|
echo "patching \`$py'..."
|
|
|
|
patchPythonScript "$py"
|
|
|
|
echo "wrapping \`$bin'..."
|
|
|
|
makeWrapper "$py" "$bin" \
|
|
|
|
--prefix PATH ':' "$program_PATH" \
|
|
|
|
--set PYTHONNOUSERSITE "true" \
|
|
|
|
$makeWrapperArgs
|
|
|
|
done
|
|
|
|
'';
|
2017-06-10 10:04:33 +01:00
|
|
|
|
2017-09-20 23:03:12 +01:00
|
|
|
postFixup = ''
|
2015-07-22 22:17:08 +01:00
|
|
|
substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out
|
2019-06-30 14:29:17 +01:00
|
|
|
# Patch udev rules:
|
|
|
|
# with plugin, they upload firmware to printers,
|
|
|
|
# without plugin, they complain about the missing plugin.
|
2016-04-01 20:07:40 +01:00
|
|
|
substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \
|
|
|
|
--replace {,${bash}}/bin/sh \
|
2019-07-13 08:25:56 +01:00
|
|
|
--replace /usr/bin/nohup "" \
|
2020-11-24 15:29:28 +00:00
|
|
|
--replace {,${util-linux}/bin/}logger \
|
2016-04-01 20:07:40 +01:00
|
|
|
--replace {/usr,$out}/bin
|
2020-05-31 20:45:30 +01:00
|
|
|
remove-references-to -t ${stdenv.cc.cc} $(readlink -f $out/lib/*.so)
|
2020-06-16 19:34:30 +01:00
|
|
|
'' + stdenv.lib.optionalString withQt5 ''
|
|
|
|
for f in $out/bin/hp-*;do
|
|
|
|
wrapQtApp $f
|
|
|
|
done
|
2015-07-22 19:21:32 +01:00
|
|
|
'';
|
2013-02-05 18:58:31 +00:00
|
|
|
|
2020-05-31 20:45:30 +01:00
|
|
|
# There are some binaries there, which reference gcc-unwrapped otherwise.
|
|
|
|
stripDebugList = [
|
2020-07-12 12:21:08 +01:00
|
|
|
"share/hplip" "lib/cups/backend" "lib/cups/filter" python3Packages.python.sitePackages "lib/sane"
|
2020-05-31 20:45:30 +01:00
|
|
|
];
|
|
|
|
|
2010-09-21 02:24:00 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-18 09:16:17 +01:00
|
|
|
description = "Print, scan and fax HP drivers for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://developers.hp.com/hp-linux-imaging-and-printing";
|
|
|
|
downloadPage = "https://sourceforge.net/projects/hplip/files/hplip/";
|
2014-11-20 01:58:13 +00:00
|
|
|
license = if withPlugin
|
|
|
|
then licenses.unfree
|
2014-11-20 13:23:19 +00:00
|
|
|
else with licenses; [ mit bsd2 gpl2Plus ];
|
2019-01-05 08:35:20 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2010-06-18 09:16:17 +01:00
|
|
|
};
|
|
|
|
}
|