mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
72 lines
2.2 KiB
Nix
72 lines
2.2 KiB
Nix
{ stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto, wrapGAppsHook
|
|
, docbook_xml_dtd_412, docbook_xsl
|
|
, libxml2, desktop-file-utils, libusb1, cups, gdk-pixbuf, pango, atk, libnotify
|
|
, gobject-introspection, libsecret
|
|
, cups-filters
|
|
, pythonPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "system-config-printer-${version}";
|
|
version = "1.5.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/zdohnal/system-config-printer/releases/download/${version}/${name}.tar.xz";
|
|
sha256 = "1lq0q51bhanirpjjvvh4xiafi8hgpk8r32h0dj6dn3f32z8pib9q";
|
|
};
|
|
|
|
patches = [ ./detect_serverbindir.patch ];
|
|
|
|
buildInputs = [
|
|
glib udev libusb1 cups
|
|
pythonPackages.python
|
|
libnotify gobject-introspection gdk-pixbuf pango atk
|
|
libsecret
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
intltool pkgconfig
|
|
xmlto libxml2 docbook_xml_dtd_412 docbook_xsl desktop-file-utils
|
|
pythonPackages.wrapPython
|
|
wrapGAppsHook
|
|
];
|
|
|
|
pythonPath = with pythonPackages; requiredPythonModules [ pycups pycurl dbus-python pygobject3 requests pycairo pysmbc ];
|
|
|
|
configureFlags = [
|
|
"--with-udev-rules"
|
|
"--with-udevdir=$(out)/etc/udev"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
];
|
|
|
|
stripDebugList = [ "bin" "lib" "etc/udev" ];
|
|
|
|
doCheck = false; # generates shebangs in check phase, too lazy to fix
|
|
|
|
postInstall =
|
|
''
|
|
buildPythonPath "$out $pythonPath"
|
|
gappsWrapperArgs+=(
|
|
--prefix PATH : "$program_PATH"
|
|
--set CUPS_DATADIR "${cups-filters}/share/cups"
|
|
)
|
|
|
|
find $out/share/system-config-printer -name \*.py -type f -perm -0100 -print0 | while read -d "" f; do
|
|
patchPythonScript "$f"
|
|
done
|
|
|
|
# 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 = {
|
|
homepage = http://cyberelk.net/tim/software/system-config-printer/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|