2011-07-22 00:18:41 +02:00
|
|
|
{ stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto
|
|
|
|
, makeWrapper, pygobject, pygtk, docbook_xml_dtd_412, docbook_xsl
|
2012-12-12 16:34:38 +01:00
|
|
|
, pythonDBus, libxml2, desktop_file_utils, libusb1, cups, pycups
|
2012-01-18 21:53:01 +01:00
|
|
|
, pythonPackages
|
2011-07-22 03:28:09 +02:00
|
|
|
, withGUI ? true
|
2011-07-22 00:18:41 +02:00
|
|
|
}:
|
2010-08-29 21:37:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-12-12 16:34:38 +01:00
|
|
|
name = "system-config-printer-1.3.12";
|
2009-02-25 17:05:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-12-12 16:34:38 +01:00
|
|
|
url = "http://cyberelk.net/tim/data/system-config-printer/1.3/${name}.tar.xz";
|
|
|
|
sha256 = "1cg9n75rg5l9vr1925n2g771kga33imikyl0mf70lww2sfgvs18r";
|
2010-08-29 21:37:02 +02:00
|
|
|
};
|
|
|
|
|
2013-01-25 04:48:11 +01:00
|
|
|
propagatedBuildInputs = [ pythonPackages.pycurl ];
|
|
|
|
|
2011-07-22 00:18:41 +02:00
|
|
|
buildInputs =
|
2012-12-12 16:34:38 +01:00
|
|
|
[ intltool pkgconfig glib udev libusb1 cups xmlto
|
2011-07-22 00:18:41 +02:00
|
|
|
libxml2 docbook_xml_dtd_412 docbook_xsl desktop_file_utils
|
|
|
|
pythonPackages.python pythonPackages.wrapPython
|
|
|
|
];
|
|
|
|
|
2011-07-22 03:28:09 +02:00
|
|
|
pythonPath =
|
2013-01-25 04:48:11 +01:00
|
|
|
[ pythonDBus pycups pygobject pythonPackages.pycurl ]
|
2011-07-22 03:28:09 +02:00
|
|
|
++ stdenv.lib.optionals withGUI [ pygtk pythonPackages.notify ];
|
2012-12-12 16:34:38 +01:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-udev-rules"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/systemd"
|
|
|
|
];
|
2010-08-29 21:37:02 +02:00
|
|
|
|
2011-07-22 00:18:41 +02:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
wrapPythonPrograms
|
|
|
|
( cd $out/share/system-config-printer/troubleshoot
|
|
|
|
mv .__init__.py-wrapped __init__.py
|
|
|
|
)
|
|
|
|
'';
|
2010-11-28 10:46:51 +01:00
|
|
|
|
2010-08-29 21:37:02 +02:00
|
|
|
meta = {
|
2012-12-12 16:34:38 +01:00
|
|
|
homepage = http://cyberelk.net/tim/software/system-config-printer/;
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
|
|
|
}
|