mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
[Backport release-24.05] pantalaimon: fix startup (#340291)
This commit is contained in:
commit
ca64594e19
@ -5,6 +5,7 @@
|
||||
, installShellFiles
|
||||
, nixosTests
|
||||
, enableDbusUi ? true
|
||||
, wrapGAppsHook3
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
@ -61,6 +62,15 @@ python3Packages.buildPythonApplication rec {
|
||||
]
|
||||
++ lib.flatten (lib.attrValues optional-dependencies);
|
||||
|
||||
nativeBuildInputs = lib.optionals enableDbusUi [
|
||||
wrapGAppsHook3
|
||||
];
|
||||
|
||||
dontWrapGApps = enableDbusUi;
|
||||
makeWrapperArgs = lib.optionals enableDbusUi [
|
||||
"\${gappsWrapperArgs[@]}"
|
||||
];
|
||||
|
||||
# darwin has difficulty communicating with server, fails some integration tests
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user