2015-11-20 20:08:41 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll
|
|
|
|
, pkgconfig
|
2016-01-03 02:31:38 +00:00
|
|
|
, cups, zlib, libjpeg, libusb1, pythonPackages, sane-backends, dbus, usbutils
|
2016-04-18 11:27:14 +00:00
|
|
|
, net_snmp, openssl, polkit
|
2016-04-01 19:07:40 +00:00
|
|
|
, bash, coreutils, utillinux
|
2016-08-14 10:37:20 +00:00
|
|
|
, qtSupport ? true, qt4
|
2015-11-20 20:08:41 +00:00
|
|
|
, withPlugin ? false
|
2010-06-18 08:16:17 +00:00
|
|
|
}:
|
|
|
|
|
2015-01-21 13:42:30 +00:00
|
|
|
let
|
|
|
|
|
2015-07-22 18:58:08 +00:00
|
|
|
name = "hplip-${version}";
|
2016-05-07 20:57:21 +00:00
|
|
|
version = "3.16.5";
|
2010-06-18 08:16:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-03-06 16:07:47 +00:00
|
|
|
url = "mirror://sourceforge/hplip/${name}.tar.gz";
|
2016-05-07 20:57:21 +00:00
|
|
|
sha256 = "1nay65q1zmx2jxiwn66n7mlr73azacz5097gw98kqqf90dh522f6";
|
2015-07-22 18:58:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
plugin = fetchurl {
|
|
|
|
url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
|
2016-05-07 20:57:21 +00:00
|
|
|
sha256 = "15qrcd3ndnxri6pfdfmsjyv2f3zfkig80yghs76jbsm106rp8g3q";
|
2010-06-18 08:16:17 +00:00
|
|
|
};
|
|
|
|
|
2015-11-20 20:14:57 +00:00
|
|
|
hplipState =
|
2015-01-21 13:42:30 +00:00
|
|
|
substituteAll
|
|
|
|
{
|
2015-07-22 18:58:08 +00:00
|
|
|
inherit version;
|
2015-01-21 13:42:30 +00:00
|
|
|
src = ./hplip.state;
|
|
|
|
};
|
|
|
|
|
2015-11-20 20:25:45 +00:00
|
|
|
hplipPlatforms =
|
2015-05-16 19:12:11 +00:00
|
|
|
{
|
2015-11-20 20:25:45 +00:00
|
|
|
"i686-linux" = "x86_32";
|
2015-05-16 19:12:11 +00:00
|
|
|
"x86_64-linux" = "x86_64";
|
2015-11-20 20:25:45 +00:00
|
|
|
"armv6l-linux" = "arm32";
|
|
|
|
"armv7l-linux" = "arm32";
|
|
|
|
};
|
2015-05-16 19:12:11 +00:00
|
|
|
|
2015-11-20 20:25:45 +00:00
|
|
|
hplipArch = hplipPlatforms."${stdenv.system}"
|
2015-11-23 14:42:22 +00:00
|
|
|
or (throw "HPLIP not supported on ${stdenv.system}");
|
2015-11-20 20:47:17 +00:00
|
|
|
|
|
|
|
pluginArches = [ "x86_32" "x86_64" ];
|
2015-10-20 22:53:31 +00:00
|
|
|
|
2015-01-21 13:42:30 +00:00
|
|
|
in
|
|
|
|
|
2015-11-20 20:47:17 +00:00
|
|
|
assert withPlugin -> builtins.elem hplipArch pluginArches
|
2015-11-23 14:42:22 +00:00
|
|
|
|| throw "HPLIP plugin not supported on ${stdenv.system}";
|
2015-11-20 20:47:17 +00:00
|
|
|
|
2015-01-21 13:42:30 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name src;
|
2010-06-18 08:16:17 +00:00
|
|
|
|
2015-07-22 18:21:32 +00:00
|
|
|
buildInputs = [
|
|
|
|
libjpeg
|
|
|
|
cups
|
|
|
|
libusb1
|
|
|
|
pythonPackages.python
|
|
|
|
pythonPackages.wrapPython
|
2016-01-03 02:31:38 +00:00
|
|
|
sane-backends
|
2015-07-22 18:21:32 +00:00
|
|
|
dbus
|
|
|
|
net_snmp
|
2016-04-18 11:27:14 +00:00
|
|
|
openssl
|
2015-11-20 20:16:40 +00:00
|
|
|
] ++ stdenv.lib.optionals qtSupport [
|
|
|
|
qt4
|
|
|
|
];
|
|
|
|
|
2015-07-22 18:21:32 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonPath = with pythonPackages; [
|
|
|
|
dbus
|
|
|
|
pillow
|
|
|
|
pygobject
|
|
|
|
recursivePthLoader
|
|
|
|
reportlab
|
2015-07-22 18:54:57 +00:00
|
|
|
usbutils
|
2015-11-20 20:16:40 +00:00
|
|
|
] ++ stdenv.lib.optionals qtSupport [
|
|
|
|
pyqt4
|
|
|
|
];
|
2015-07-22 18:21:32 +00:00
|
|
|
|
2010-06-18 08:16:17 +00:00
|
|
|
prePatch = ''
|
2014-05-10 22:33:46 +00:00
|
|
|
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
|
2015-05-13 10:20:34 +00: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 17:40:03 +00:00
|
|
|
-e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0, \
|
2015-05-13 10:20:34 +00: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 08:16:17 +00:00
|
|
|
'';
|
|
|
|
|
2015-08-04 17:29:35 +00:00
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags
|
|
|
|
--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 18:58:08 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-04-01 19:07:40 +00:00
|
|
|
postInstall = stdenv.lib.optionalString withPlugin ''
|
2014-05-10 22:33:46 +00: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
|
|
|
|
ln -s $out/share/hplip/prnt/plugins/$plugin-${hplipArch}.so \
|
2014-05-10 22:33:46 +00: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 20:14:57 +00:00
|
|
|
cp $plugin-${hplipArch}.so $out/share/hplip/scan/plugins
|
|
|
|
ln -s $out/share/hplip/scan/plugins/$plugin-${hplipArch}.so \
|
2014-05-10 22:33:46 +00:00
|
|
|
$out/share/hplip/scan/plugins/$plugin.so
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/var/lib/hp
|
2015-11-20 20:14:57 +00:00
|
|
|
cp ${hplipState} $out/var/lib/hp/hplip.state
|
2014-05-11 18:31:13 +00: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 21:35:30 +00:00
|
|
|
|
|
|
|
rm $out/etc/udev/rules.d/56-hpmud.rules
|
2015-11-20 20:47:17 +00:00
|
|
|
'';
|
2015-07-22 18:21:32 +00:00
|
|
|
|
|
|
|
fixupPhase = ''
|
2015-07-22 21:17:08 +00:00
|
|
|
# Wrap the user-facing Python scripts in $out/bin without turning the
|
|
|
|
# ones in $out /share into shell scripts (they need to be importable).
|
|
|
|
# Note that $out/bin contains only symlinks to $out/share.
|
2015-07-22 18:21:32 +00:00
|
|
|
for bin in $out/bin/*; do
|
|
|
|
py=`readlink -m $bin`
|
|
|
|
rm $bin
|
|
|
|
cp $py $bin
|
|
|
|
wrapPythonProgramsIn $bin "$out $pythonPath"
|
|
|
|
sed -i "s@$(dirname $bin)/[^ ]*@$py@g" $bin
|
|
|
|
done
|
2013-02-05 18:58:31 +00:00
|
|
|
|
2015-07-22 18:21:32 +00:00
|
|
|
# Remove originals. Knows a little too much about wrapPythonProgramsIn.
|
|
|
|
rm -f $out/bin/.*-wrapped
|
2010-06-18 08:16:17 +00:00
|
|
|
|
2015-07-22 21:17:08 +00:00
|
|
|
# Merely patching shebangs in $out/share does not cause trouble.
|
|
|
|
for i in $out/share/hplip{,/*}/*.py; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/bin/python \
|
|
|
|
${pythonPackages.python}/bin/${pythonPackages.python.executable} \
|
|
|
|
--replace "/usr/bin/env python" \
|
|
|
|
${pythonPackages.python}/bin/${pythonPackages.python.executable}
|
|
|
|
done
|
|
|
|
|
2015-07-22 18:21:32 +00:00
|
|
|
wrapPythonProgramsIn $out/lib "$out $pythonPath"
|
2015-07-22 21:17:08 +00:00
|
|
|
|
|
|
|
substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out
|
2016-04-01 19:07:40 +00: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 18:21:32 +00:00
|
|
|
'';
|
2013-02-05 18:58:31 +00:00
|
|
|
|
2010-09-21 01:24:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-06-18 08:16:17 +00:00
|
|
|
description = "Print, scan and fax HP drivers for Linux";
|
|
|
|
homepage = http://hplipopensource.com/;
|
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 ];
|
2015-05-16 19:12:11 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" ];
|
2015-08-04 02:31:44 +00:00
|
|
|
maintainers = with maintainers; [ jgeerds nckx ];
|
2010-06-18 08:16:17 +00:00
|
|
|
};
|
|
|
|
}
|