nixpkgs/pkgs/tools/misc/system-config-printer/default.nix

65 lines
2.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto, wrapGAppsHook
system-config-printer: update hash to really upgrade to 1.5.7 Commit 03353ce6ff738acce3d ("system-config-printer: 1.3.12 -> 1 5.7") forgot to update the hash. So since that commit we actually continued to use the old version (1.3.12) because of the NixOS tarball cache... The new version prints some warnings on startup: /nix/store/HASH-system-config-printer-1.5.7/share/system-config-printer/system-config-printer.py:32: \ PyGIWarning: Polkit was imported without specifying a version first. \ Use gi.require_version('Polkit', '1.0') before import to ensure that the right version gets loaded. from gi.repository import Polkit ...and similar errors for GdkPixbuf, Gdk, Gtk and Notify. These warnings are already fixed upstream and will be part of the next release. Implementation details: * The new version needs python3. * Remove unneeded, and python3 incompatible, 'notify' dependency. system-config-printer > 1.3.12 replaced it with GOBject introspection bindings to libnotify (from gi.repository import Notify). * Add gtk3, gdk_pixbuf, pango, atk, libnotify as needed (for gobject introspection). * A new --with-udevdir configure option is used to prevent the installer from trying to install stuff to "/rules.d" (yes, the root). * Get pycups from the passed pythonPackages set (fixes loading of python cups module). * Use pygobject3 instead of pygobject, as needed. * Use dbus from the passed pythonPackages attrset instead of pythonDBus, so we get a python3 compatible module that loads successfully. * Python requests2 modules is required.
2016-06-19 09:52:59 +00:00
, makeWrapper, gtk3, docbook_xml_dtd_412, docbook_xsl
, libxml2, desktop_file_utils, libusb1, cups, gdk_pixbuf, pango, atk, libnotify
, gobjectIntrospection, libgnome_keyring3
, cups-filters
, pythonPackages
, withGUI ? true
}:
stdenv.mkDerivation rec {
name = "system-config-printer-${version}";
version = "1.5.9";
src = fetchurl {
url = "https://github.com/zdohnal/system-config-printer/releases/download/v${version}/${name}.tar.gz";
sha256 = "03bwlpsiqpxzcwd78a7rmwiww4jnqd7kl7il4kx78l1r57lasd2r";
};
2016-01-17 11:54:28 +00:00
patches = [ ./detect_serverbindir.patch ];
buildInputs = [
intltool pkgconfig glib udev libusb1 cups xmlto
libxml2 docbook_xml_dtd_412 docbook_xsl desktop_file_utils
libnotify gobjectIntrospection gdk_pixbuf pango atk
libgnome_keyring3
(pythonPackages.python.withPackages (ps: with ps; [
pycups pycurl dbus-python pygobject3 requests pycairo pysmbc
]))
];
nativeBuildInputs = [ wrapGAppsHook ];
configureFlags = [
"--with-udev-rules"
"--with-udevdir=$(out)/etc/udev"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
];
stripDebugList = [ "bin" "lib" "etc/udev" ];
postInstall = ''
gappsWrapperArgs+=(
--prefix PATH : "$program_PATH"
--prefix PYTHONPATH : "$out/${pythonPackages.python.sitePackages}"
--set CUPS_DATADIR "${cups-filters}/share/cups"
)
# The below line will be unneeded when the next upstream release arrives.
sed -i -e "s|/usr/local/bin|$out/bin|" \
"$out/share/dbus-1/services/org.fedoraproject.Config.Printing.service"
# Manually expand literal "$(out)", which have failed to expand
sed -e "s|ExecStart=\$(out)|ExecStart=$out|" \
-i "$out/etc/systemd/system/configure-printer@.service"
'';
meta = with stdenv.lib; {
homepage = http://cyberelk.net/tim/software/system-config-printer/;
platforms = platforms.linux;
license = licenses.gpl2;
};
}