nix: optionally include shell

This commit is contained in:
Soramane
2025-07-16 13:43:12 +10:00
parent b1019d1192
commit 89892f4d09
3 changed files with 97 additions and 14 deletions
+18 -14
View File
@@ -15,6 +15,8 @@
wl-screenrec,
dconf,
killall,
caelestia-shell,
withShell ? false,
discordBin ? "discord",
qtctStyle ? "Fusion",
}:
@@ -37,20 +39,22 @@ python3.pkgs.buildPythonApplication {
pythonImportsCheck = ["caelestia"];
nativeBuildInputs = [installShellFiles];
propagatedBuildInputs = [
swappy
libnotify
slurp
wl-clipboard
cliphist
app2unit
dart-sass
grim
fuzzel
wl-screenrec
dconf
killall
];
propagatedBuildInputs =
[
swappy
libnotify
slurp
wl-clipboard
cliphist
app2unit
dart-sass
grim
fuzzel
wl-screenrec
dconf
killall
]
++ lib.optional withShell caelestia-shell;
SETUPTOOLS_SCM_PRETEND_VERSION = 1;