90909ea936
The latest version of system-config-printer seems to have introduced a dependency on pycurl. The attached patch includes this, fixing the build of kde, which depended on it through kdeadmin.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto
|
|
, makeWrapper, pygobject, pygtk, docbook_xml_dtd_412, docbook_xsl
|
|
, pythonDBus, libxml2, desktop_file_utils, libusb1, cups, pycups
|
|
, pythonPackages
|
|
, withGUI ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "system-config-printer-1.3.12";
|
|
|
|
src = fetchurl {
|
|
url = "http://cyberelk.net/tim/data/system-config-printer/1.3/${name}.tar.xz";
|
|
sha256 = "1cg9n75rg5l9vr1925n2g771kga33imikyl0mf70lww2sfgvs18r";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pythonPackages.pycurl ];
|
|
|
|
buildInputs =
|
|
[ intltool pkgconfig glib udev libusb1 cups xmlto
|
|
libxml2 docbook_xml_dtd_412 docbook_xsl desktop_file_utils
|
|
pythonPackages.python pythonPackages.wrapPython
|
|
];
|
|
|
|
pythonPath =
|
|
[ pythonDBus pycups pygobject pythonPackages.pycurl ]
|
|
++ stdenv.lib.optionals withGUI [ pygtk pythonPackages.notify ];
|
|
|
|
configureFlags =
|
|
[ "--with-udev-rules"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/systemd"
|
|
];
|
|
|
|
postInstall =
|
|
''
|
|
wrapPythonPrograms
|
|
( cd $out/share/system-config-printer/troubleshoot
|
|
mv .__init__.py-wrapped __init__.py
|
|
)
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://cyberelk.net/tim/software/system-config-printer/;
|
|
};
|
|
}
|