lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

openbox: fix wrapping of openbox-xdg-autostart

+12 -8
+12 -8
pkgs/applications/window-managers/openbox/default.nix
··· 6 6 name = "openbox-${version}"; 7 7 version = "3.6.1"; 8 8 9 - nativeBuildInputs = [ pkgconfig ]; 10 - buildInputs = [ 11 - libxml2 12 - libXinerama libXcursor libXau libXrandr libICE libSM 13 - libstartup_notification makeWrapper 9 + nativeBuildInputs = [ 10 + pkgconfig 11 + makeWrapper 14 12 python2.pkgs.wrapPython 15 13 ]; 16 14 17 - pythonPath = with python2.pkgs; [ 18 - pyxdg 15 + buildInputs = [ 16 + libxml2 17 + libXinerama libXcursor libXau libXrandr libICE libSM 18 + libstartup_notification 19 19 ]; 20 20 21 21 propagatedBuildInputs = [ 22 22 pango imlib2 23 + ]; 24 + 25 + pythonPath = with python2.pkgs; [ 26 + pyxdg 23 27 ]; 24 28 25 29 src = fetchurl { ··· 41 45 wrapProgram "$out/bin/openbox-session" --prefix XDG_DATA_DIRS : "$out/share" 42 46 wrapProgram "$out/bin/openbox-gnome-session" --prefix XDG_DATA_DIRS : "$out/share" 43 47 wrapProgram "$out/bin/openbox-kde-session" --prefix XDG_DATA_DIRS : "$out/share" 44 - wrapPythonPrograms 48 + wrapPythonProgramsIn "$out/libexec" "$out $pythonPath" 45 49 ''; 46 50 47 51 meta = {