2011-03-06 17:07:47 +01:00
|
|
|
{stdenv, fetchurl, cups, zlib, libjpeg, libusb, python, saneBackends, dbus
|
2012-01-07 18:06:49 +01:00
|
|
|
, pkgconfig, polkit, qtSupport ? true, qt4
|
2010-06-18 10:16:17 +02:00
|
|
|
}:
|
|
|
|
|
2011-03-06 17:07:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hplip-3.11.1";
|
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";
|
|
|
|
sha256 = "0y68s4xm5d0kv7p5j41qq0xglp4vdbjwbrjs89b4a21wwn69hp9g";
|
2010-06-18 10:16:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#preBuild=''
|
|
|
|
# makeFlags="V=1 DISABLE_JBIG=1 CUPSFILTER=$out/lib/cups/filter CUPSPPD=$out/share/cups/model"
|
|
|
|
#'';
|
|
|
|
|
|
|
|
prePatch = ''
|
2010-09-21 03:24:00 +02:00
|
|
|
sed -i s,/etc/sane.d,$out/etc/sane.d/, Makefile.in
|
2010-06-18 10:16:17 +02:00
|
|
|
'';
|
|
|
|
|
2010-09-21 03:24:00 +02:00
|
|
|
# --disable-network-build Until we have snmp
|
|
|
|
|
2010-06-18 10:16:17 +02: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
|
2011-03-06 17:07:47 +01:00
|
|
|
--enable-policykit
|
2010-06-18 10:16:17 +02:00
|
|
|
--disable-network-build"
|
|
|
|
|
|
|
|
export makeFlags="
|
|
|
|
halpredir=$out/share/hal/fdi/preprobe/10osvendor
|
|
|
|
hplip_statedir=$out/var
|
|
|
|
rulesdir=$out/etc/udev/rules.d
|
2011-03-06 17:07:47 +01:00
|
|
|
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
|
2010-06-18 10:16:17 +02:00
|
|
|
hplip_confdir=$out/etc/hp
|
|
|
|
";
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [libjpeg cups libusb python saneBackends dbus pkgconfig] ++
|
|
|
|
stdenv.lib.optional qtSupport qt4;
|
|
|
|
|
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/;
|
2010-06-18 11:45:23 +02:00
|
|
|
license = "free"; # MIT/BSD/GPL
|
2010-09-21 03:24:00 +02:00
|
|
|
platforms = platforms.linux;
|
2010-06-18 10:16:17 +02:00
|
|
|
};
|
|
|
|
}
|