cosmic-settings-daemon: add passthru.updateScript

This commit is contained in:
Pratham Patel
2025-11-20 15:00:37 +05:30
parent 7907024ffd
commit 7aa75e27a1
@@ -11,6 +11,7 @@
udev,
openssl,
nixosTests,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
@@ -50,13 +51,23 @@ rustPlatform.buildRustPackage (finalAttrs: {
dontCargoInstall = true;
passthru.tests = {
inherit (nixosTests)
cosmic
cosmic-autologin
cosmic-noxwayland
cosmic-autologin-noxwayland
;
passthru = {
tests = {
inherit (nixosTests)
cosmic
cosmic-autologin
cosmic-noxwayland
cosmic-autologin-noxwayland
;
};
updateScript = nix-update-script {
extraArgs = [
"--version"
"unstable"
"--version-regex"
"epoch-(.*)"
];
};
};
meta = {