about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.8/kdeadmin/system-config-printer-kde.nix
blob: 2c462f67c1593b106b04431648c121c096de093c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ kde, pkgconfig, pythonPackages, sip, pycups, pygobject, system_config_printer,
  kdelibs, kdepimlibs, pykde4, cups, nettools }:

let s_c_p = system_config_printer.override { withGUI = false; }; in
kde {
  buildInputs = [ kdelibs kdepimlibs pythonPackages.python pycups pykde4 sip
    pygobject s_c_p ];

  passthru = { system_config_printer = s_c_p; };

  preConfigure =
    ''
      for i in system-config-printer-kde/cmake-modules/FindSystemConfigPrinter.py system-config-printer-kde/system-config-printer-kde.py; do
        substituteInPlace $i \
          --replace /usr/share/system-config-printer ${s_c_p}/share/system-config-printer \
          --replace /usr/bin/cupstestppd ${cups}/bin/cupstestppd \
          --replace /bin/hostname ${nettools}/bin/hostname
      done
    '';

  postInstall =
    ''
      # Bake the required Python path into the printer configuration program.
      res=
      for i in $(IFS=:; echo $PYTHONPATH); do res="$res''${res:+,} '$i'"; done

      sed -i $out/share/apps/system-config-printer-kde/system-config-printer-kde.py \
          -e "1 a import sys\nsys.path = [$res] + sys.path"

      mkdir -p $out/nix-support
      echo ${pykde4} > $out/nix-support/propagated-user-env-packages
    '';
}