Merge pull request #283970 from teutat3s/nextcloud-only-on-linux

nextcloud, nextcloud-notify_push: set platforms to linux
This commit is contained in:
Maximilian Bosch 2024-01-27 08:38:49 +01:00 committed by GitHub
commit 3e20d778ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,7 @@ let
homepage = "https://nextcloud.com";
maintainers = with maintainers; [ schneefux bachp globin ma27 ];
license = licenses.agpl3Plus;
platforms = with platforms; unix;
platforms = platforms.linux;
knownVulnerabilities = extraVulnerabilities
++ (optional eol "Nextcloud version ${version} is EOL");
};

View File

@ -36,9 +36,11 @@ rustPlatform.buildRustPackage rec {
};
meta = with lib; {
changelog = "https://github.com/nextcloud/notify_push/releases/tag/v${version}";
description = "Update notifications for nextcloud clients";
homepage = "https://github.com/nextcloud/notify_push";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = teams.helsinki-systems.members;
};
}