nixpkgs/pkgs/applications/window-managers/sway/wrapper.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, sway-unwrapped
2019-12-08 12:56:56 +00:00
, makeWrapper, symlinkJoin, writeShellScriptBin
, withBaseWrapper ? true, extraSessionCommands ? "", dbus
, withGtkWrapper ? false, wrapGAppsHook, gdk-pixbuf, glib, gtk3
, extraOptions ? [] # E.g.: [ "--verbose" ]
# Used by the NixOS module:
, isNixOS ? false
2021-10-11 19:41:06 +00:00
, enableXWayland ? true
, dbusSupport ? true
2019-12-08 12:56:56 +00:00
}:
assert extraSessionCommands != "" -> withBaseWrapper;
with lib;
let
2021-10-11 19:41:06 +00:00
sway = sway-unwrapped.override { inherit isNixOS enableXWayland; };
2019-12-08 12:56:56 +00:00
baseWrapper = writeShellScriptBin "sway" ''
set -o errexit
if [ ! "$_SWAY_WRAPPER_ALREADY_EXECUTED" ]; then
export XDG_CURRENT_DESKTOP=sway
2019-12-08 12:56:56 +00:00
${extraSessionCommands}
export _SWAY_WRAPPER_ALREADY_EXECUTED=1
2019-12-08 12:56:56 +00:00
fi
if [ "$DBUS_SESSION_BUS_ADDRESS" ]; then
export DBUS_SESSION_BUS_ADDRESS
exec ${sway}/bin/sway "$@"
2019-12-08 12:56:56 +00:00
else
exec ${if !dbusSupport then "" else "${dbus}/bin/dbus-run-session"} ${sway}/bin/sway "$@"
2019-12-08 12:56:56 +00:00
fi
'';
in symlinkJoin {
name = "sway-${sway.version}";
2019-12-08 12:56:56 +00:00
paths = (optional withBaseWrapper baseWrapper)
++ [ sway ];
2019-12-08 12:56:56 +00:00
strictDeps = false;
2019-12-08 12:56:56 +00:00
nativeBuildInputs = [ makeWrapper ]
++ (optional withGtkWrapper wrapGAppsHook);
buildInputs = optionals withGtkWrapper [ gdk-pixbuf glib gtk3 ];
# We want to run wrapProgram manually
dontWrapGApps = true;
2019-12-08 12:56:56 +00:00
postBuild = ''
${optionalString withGtkWrapper "gappsWrapperArgsHook"}
2019-12-08 12:56:56 +00:00
wrapProgram $out/bin/sway \
${optionalString withGtkWrapper ''"''${gappsWrapperArgs[@]}"''} \
${optionalString (extraOptions != []) "${concatMapStrings (x: " --add-flags " + x) extraOptions}"}
2019-12-08 12:56:56 +00:00
'';
passthru = {
inherit (sway.passthru) tests;
providedSessions = [ "sway" ];
};
2019-12-08 12:56:56 +00:00
inherit (sway) meta;
2019-12-08 12:56:56 +00:00
}