2011-07-22 00:18:41 +02:00
|
|
|
{ stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto
|
|
|
|
, makeWrapper, pygobject, pygtk, docbook_xml_dtd_412, docbook_xsl
|
|
|
|
, pythonDBus, libxml2, desktop_file_utils, libusb, 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 {
|
|
|
|
name = "${meta.name}-${meta.version}";
|
2009-02-25 17:05:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-22 00:18:41 +02:00
|
|
|
url = "http://cyberelk.net/tim/data/${meta.name}/1.3/${name}.tar.xz";
|
|
|
|
sha256 = "1d50rqgpyrzyrxwq3qhafzq9075qm2wxdrh1f1q7whlr0chxi3mw";
|
2010-08-29 21:37:02 +02:00
|
|
|
};
|
|
|
|
|
2011-07-22 00:18:41 +02:00
|
|
|
buildInputs =
|
2012-01-18 21:53:01 +01:00
|
|
|
[ intltool pkgconfig glib udev libusb 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 =
|
|
|
|
[ pythonDBus pycups pygobject ]
|
|
|
|
++ stdenv.lib.optionals withGUI [ pygtk pythonPackages.notify ];
|
2011-07-22 00:18:41 +02:00
|
|
|
|
2010-08-29 21:37:02 +02:00
|
|
|
configureFlags = "--with-udev-rules";
|
|
|
|
|
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 = {
|
|
|
|
name = "system-config-printer";
|
2011-07-22 00:18:41 +02:00
|
|
|
version = "1.3.4";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
|
|
|
}
|