2015-11-20 21:08:41 +01:00
|
|
|
{ stdenv, fetchurl, substituteAll
|
|
|
|
, pkgconfig
|
2017-06-10 11:04:33 +02:00
|
|
|
, makeWrapper
|
2016-01-03 03:31:38 +01:00
|
|
|
, cups, zlib, libjpeg, libusb1, pythonPackages, sane-backends, dbus, usbutils
|
2017-06-10 11:04:33 +02:00
|
|
|
, net_snmp, openssl, polkit, nettools
|
2016-04-01 21:07:40 +02:00
|
|
|
, bash, coreutils, utillinux
|
2016-10-26 10:29:04 +02:00
|
|
|
, qtSupport ? true
|
2015-11-20 21:08:41 +01:00
|
|
|
, withPlugin ? false
|
2010-06-18 10:16:17 +02:00
|
|
|
}:
|
|
|
|
|
2015-01-21 14:42:30 +01:00
|
|
|
let
|
|
|
|
|
2015-07-22 20:58:08 +02:00
|
|
|
name = "hplip-${version}";
|
2017-03-20 10:55:52 +01:00
|
|
|
version = "3.16.11";
|
2010-06-18 10:16:17 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-03-06 17:07:47 +01:00
|
|
|
url = "mirror://sourceforge/hplip/${name}.tar.gz";
|
2017-03-20 10:55:52 +01:00
|
|
|
sha256 = "094vkyr0rjng72m13dgr824cdl7q20x23qjxzih4w7l9njn0rqpn";
|
2015-07-22 20:58:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
plugin = fetchurl {
|
|
|
|
url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
|
2017-03-20 10:55:52 +01:00
|
|
|
sha256 = "1y3wdax2wb6kdd8bi40wl7v9s8ffyjz95bz42sjcpzzddmlhcaxg";
|
2010-06-18 10:16:17 +02:00
|
|
|
};
|
|
|
|
|
2017-06-10 11:04:33 +02:00
|
|
|
hplipState = substituteAll {
|
|
|
|
inherit version;
|
|
|
|
src = ./hplip.state;
|
|
|
|
};
|
|
|
|
|
|
|
|
hplipPlatforms = {
|
|
|
|
"i686-linux" = "x86_32";
|
|
|
|
"x86_64-linux" = "x86_64";
|
|
|
|
"armv6l-linux" = "arm32";
|
|
|
|
"armv7l-linux" = "arm32";
|
|
|
|
};
|
2015-05-16 21:12:11 +02:00
|
|
|
|
2015-11-20 21:25:45 +01:00
|
|
|
hplipArch = hplipPlatforms."${stdenv.system}"
|
2015-11-23 15:42:22 +01:00
|
|
|
or (throw "HPLIP not supported on ${stdenv.system}");
|
2015-11-20 21:47:17 +01:00
|
|
|
|
2016-08-19 19:13:39 +02:00
|
|
|
pluginArches = [ "x86_32" "x86_64" "arm32" ];
|
2015-10-21 00:53:31 +02:00
|
|
|
|
2015-01-21 14:42:30 +01:00
|
|
|
in
|
|
|
|
|
2015-11-20 21:47:17 +01:00
|
|
|
assert withPlugin -> builtins.elem hplipArch pluginArches
|
2015-11-23 15:42:22 +01:00
|
|
|
|| throw "HPLIP plugin not supported on ${stdenv.system}";
|
2015-11-20 21:47:17 +01:00
|
|
|
|
2017-03-21 13:01:17 +01:00
|
|
|
pythonPackages.buildPythonApplication {
|
2015-01-21 14:42:30 +01:00
|
|
|
inherit name src;
|
2017-03-21 13:01:17 +01:00
|
|
|
format = "other";
|
2010-06-18 10:16:17 +02:00
|
|
|
|
2015-07-22 20:21:32 +02:00
|
|
|
buildInputs = [
|
|
|
|
libjpeg
|
|
|
|
cups
|
|
|
|
libusb1
|
2016-01-03 03:31:38 +01:00
|
|
|
sane-backends
|
2015-07-22 20:21:32 +02:00
|
|
|
dbus
|
|
|
|
net_snmp
|
2016-04-18 13:27:14 +02:00
|
|
|
openssl
|
2015-11-20 21:16:40 +01:00
|
|
|
];
|
|
|
|
|
2015-07-22 20:21:32 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
2017-09-21 00:03:12 +02:00
|
|
|
pythonPath = with pythonPackages; [
|
2015-07-22 20:21:32 +02:00
|
|
|
dbus
|
|
|
|
pillow
|
2016-09-11 23:24:51 +02:00
|
|
|
pygobject2
|
2015-07-22 20:21:32 +02:00
|
|
|
reportlab
|
2015-07-22 20:54:57 +02:00
|
|
|
usbutils
|
2015-11-20 21:16:40 +01:00
|
|
|
] ++ stdenv.lib.optionals qtSupport [
|
|
|
|
pyqt4
|
|
|
|
];
|
2015-07-22 20:21:32 +02:00
|
|
|
|
2017-09-21 00:03:12 +02:00
|
|
|
makeWrapperArgs = [ ''--prefix PATH : "${nettools}/bin"'' ];
|
|
|
|
|
2010-06-18 10:16:17 +02:00
|
|
|
prePatch = ''
|
2014-05-11 00:33:46 +02:00
|
|
|
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
|
2015-05-13 12:20:34 +02:00
|
|
|
find . -type f -exec sed -i \
|
|
|
|
-e s,/etc/hp,$out/etc/hp, \
|
|
|
|
-e s,/etc/sane.d,$out/etc/sane.d, \
|
2016-04-16 19:40:03 +02:00
|
|
|
-e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0, \
|
2015-05-13 12:20:34 +02:00
|
|
|
-e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor, \
|
|
|
|
-e s,/usr/lib/systemd/system,$out/lib/systemd/system, \
|
|
|
|
-e s,/var/lib/hp,$out/var/lib/hp, \
|
|
|
|
{} +
|
2010-06-18 10:16:17 +02:00
|
|
|
'';
|
|
|
|
|
2015-08-04 19:29:35 +02:00
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags
|
2017-09-20 21:04:55 +02:00
|
|
|
--with-hpppddir=$out/share/cups/model/HP
|
2015-08-04 19:29:35 +02: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
|
|
|
|
"
|
|
|
|
|
|
|
|
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
|
|
|
|
"
|
2015-07-22 20:58:08 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-01 21:07:40 +02:00
|
|
|
postInstall = stdenv.lib.optionalString withPlugin ''
|
2014-05-11 00:33:46 +02: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 21:14:57 +01:00
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/prnt/plugins
|
|
|
|
ln -s $out/share/hplip/prnt/plugins/$plugin-${hplipArch}.so \
|
2014-05-11 00:33:46 +02:00
|
|
|
$out/share/hplip/prnt/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/share/hplip/scan/plugins
|
|
|
|
for plugin in bb_soap bb_marvell bb_soapht fax_marvell; do
|
2015-11-20 21:14:57 +01:00
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/scan/plugins
|
|
|
|
ln -s $out/share/hplip/scan/plugins/$plugin-${hplipArch}.so \
|
2014-05-11 00:33:46 +02:00
|
|
|
$out/share/hplip/scan/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/var/lib/hp
|
2015-11-20 21:14:57 +01:00
|
|
|
cp ${hplipState} $out/var/lib/hp/hplip.state
|
2014-05-11 20:31:13 +02:00
|
|
|
|
|
|
|
mkdir -p $out/etc/sane.d/dll.d
|
|
|
|
mv $out/etc/sane.d/dll.conf $out/etc/sane.d/dll.d/hpaio.conf
|
2014-05-20 23:35:30 +02:00
|
|
|
|
|
|
|
rm $out/etc/udev/rules.d/56-hpmud.rules
|
2015-11-20 21:47:17 +01:00
|
|
|
'';
|
2015-07-22 20:21:32 +02:00
|
|
|
|
2017-09-21 00:03:12 +02: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 11:04:33 +02:00
|
|
|
|
2017-09-21 00:03:12 +02:00
|
|
|
postFixup = ''
|
2015-07-22 23:17:08 +02:00
|
|
|
substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out
|
2016-04-01 21:07:40 +02:00
|
|
|
'' + stdenv.lib.optionalString (!withPlugin) ''
|
|
|
|
# A udev rule to notify users that they need the binary plugin.
|
|
|
|
# Needs a lot of patching but might save someone a bit of confusion:
|
|
|
|
substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \
|
|
|
|
--replace {,${bash}}/bin/sh \
|
|
|
|
--replace {/usr,${coreutils}}/bin/nohup \
|
|
|
|
--replace {,${utillinux}/bin/}logger \
|
|
|
|
--replace {/usr,$out}/bin
|
2015-07-22 20:21:32 +02:00
|
|
|
'';
|
2013-02-05 19:58:31 +01:00
|
|
|
|
2010-09-21 03:24:00 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-18 10:16:17 +02:00
|
|
|
description = "Print, scan and fax HP drivers for Linux";
|
|
|
|
homepage = http://hplipopensource.com/;
|
2014-11-20 02:58:13 +01:00
|
|
|
license = if withPlugin
|
|
|
|
then licenses.unfree
|
2014-11-20 14:23:19 +01:00
|
|
|
else with licenses; [ mit bsd2 gpl2Plus ];
|
2015-05-16 21:12:11 +02:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" ];
|
2015-08-04 04:31:44 +02:00
|
|
|
maintainers = with maintainers; [ jgeerds nckx ];
|
2010-06-18 10:16:17 +02:00
|
|
|
};
|
|
|
|
}
|