nixpkgs/pkgs/by-name/sw/sway/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

85 lines
2.0 KiB
Nix

{
lib,
sway-unwrapped,
makeWrapper,
symlinkJoin,
writeShellScriptBin,
withBaseWrapper ? true,
extraSessionCommands ? "",
dbus,
withGtkWrapper ? false,
wrapGAppsHook3,
gdk-pixbuf,
glib,
gtk3,
extraOptions ? [ ], # E.g.: [ "--verbose" ]
# Used by the NixOS module:
isNixOS ? false,
enableXWayland ? true,
dbusSupport ? true,
}:
assert extraSessionCommands != "" -> withBaseWrapper;
let
inherit (builtins) replaceStrings;
inherit (lib.lists) optional optionals;
inherit (lib.meta) getExe;
inherit (lib.strings) concatMapStrings optionalString;
sway = sway-unwrapped.overrideAttrs (oa: {
inherit isNixOS enableXWayland;
});
baseWrapper = writeShellScriptBin sway.meta.mainProgram ''
set -o errexit
if [ ! "$_SWAY_WRAPPER_ALREADY_EXECUTED" ]; then
export XDG_CURRENT_DESKTOP=${sway.meta.mainProgram}
${extraSessionCommands}
export _SWAY_WRAPPER_ALREADY_EXECUTED=1
fi
if [ "$DBUS_SESSION_BUS_ADDRESS" ]; then
export DBUS_SESSION_BUS_ADDRESS
exec ${getExe sway} "$@"
else
exec ${optionalString dbusSupport "${dbus}/bin/dbus-run-session"} ${getExe sway} "$@"
fi
'';
in
symlinkJoin rec {
pname = replaceStrings [ "-unwrapped" ] [ "" ] sway.pname;
inherit (sway) version;
name = "${pname}-${version}";
paths = (optional withBaseWrapper baseWrapper) ++ [ sway ];
strictDeps = false;
nativeBuildInputs = [ makeWrapper ] ++ (optional withGtkWrapper wrapGAppsHook3);
buildInputs = optionals withGtkWrapper [
gdk-pixbuf
glib
gtk3
];
# We want to run wrapProgram manually
dontWrapGApps = true;
postBuild = ''
${optionalString withGtkWrapper "gappsWrapperArgsHook"}
wrapProgram $out/bin/${sway.meta.mainProgram} \
${optionalString withGtkWrapper ''"''${gappsWrapperArgs[@]}"''} \
${optionalString (extraOptions != [ ])
"${concatMapStrings (x: " --add-flags " + x) extraOptions}"
}
'';
passthru = {
inherit (sway.passthru) tests;
providedSessions = [ sway.meta.mainProgram ];
};
inherit (sway) meta;
}